mirror of
https://github.com/github/semantic.git
synced 2024-12-23 23:11:50 +03:00
611 lines
20 KiB
JSON
611 lines
20 KiB
JSON
[{
|
|
"testCaseDescription": "go-struct-literals-setup-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"struct-literals.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
1,
|
|
13
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
3,
|
|
1
|
|
],
|
|
"end": [
|
|
5,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"struct-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/struct-literals.go b/struct-literals.go",
|
|
"index e69de29b..79058077 100644",
|
|
"--- a/struct-literals.go",
|
|
"+++ b/struct-literals.go",
|
|
"@@ -0,0 +1,5 @@",
|
|
"+package main",
|
|
"+",
|
|
"+func main() {",
|
|
"+",
|
|
"+}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "0c8ae16482a04b19b4a23f3af01e4d9f314b712e..1f15b0d1afbb74572f14840fe6bf05c90fc968d8"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-struct-literals-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"struct-literals.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
7,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 's1' var assignment in the main function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
8,
|
|
7
|
|
],
|
|
"end": [
|
|
8,
|
|
32
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 's2' var assignment in the main function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
9,
|
|
7
|
|
],
|
|
"end": [
|
|
9,
|
|
23
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 's3' var assignment in the main function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"struct-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/struct-literals.go b/struct-literals.go",
|
|
"index 79058077..e6fd4f15 100644",
|
|
"--- a/struct-literals.go",
|
|
"+++ b/struct-literals.go",
|
|
"@@ -1,5 +1,10 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-",
|
|
"+const s1 = Person{",
|
|
"+name: \"Frank\",",
|
|
"+Age: \"5 months\",",
|
|
"+}",
|
|
"+const s2 = struct{i int;}{i: 5}",
|
|
"+const s3 = time.Time{}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "1f15b0d1afbb74572f14840fe6bf05c90fc968d8..4494c26fb9999b04a2c61cf39c32d1d24e8d5f8d"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-struct-literals-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"struct-literals.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
12
|
|
],
|
|
"end": [
|
|
4,
|
|
18
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
12
|
|
],
|
|
"end": [
|
|
4,
|
|
15
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'Person' identifier with the 'Dog' identifier in the s1 var assignment of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
8,
|
|
21
|
|
],
|
|
"end": [
|
|
8,
|
|
24
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
8,
|
|
21
|
|
],
|
|
"end": [
|
|
8,
|
|
26
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'int' identifier with the 'float' identifier in the struct{i float;} struct type of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
8,
|
|
27
|
|
],
|
|
"end": [
|
|
8,
|
|
28
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
8,
|
|
29
|
|
],
|
|
"end": [
|
|
8,
|
|
30
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'i' identifier with the 'j' identifier in the j: 6 pair of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
8,
|
|
30
|
|
],
|
|
"end": [
|
|
8,
|
|
31
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
8,
|
|
32
|
|
],
|
|
"end": [
|
|
8,
|
|
33
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced '5' with '6' in the j: 6 pair of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
9,
|
|
12
|
|
],
|
|
"end": [
|
|
9,
|
|
21
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
9,
|
|
12
|
|
],
|
|
"end": [
|
|
9,
|
|
22
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'time.Time' qualified identifier with the 'time.Month' qualified identifier in the s3 var assignment of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"struct-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/struct-literals.go b/struct-literals.go",
|
|
"index e6fd4f15..06724a46 100644",
|
|
"--- a/struct-literals.go",
|
|
"+++ b/struct-literals.go",
|
|
"@@ -1,10 +1,10 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const s1 = Person{",
|
|
"+const s1 = Dog{",
|
|
" name: \"Frank\",",
|
|
" Age: \"5 months\",",
|
|
" }",
|
|
"-const s2 = struct{i int;}{i: 5}",
|
|
"-const s3 = time.Time{}",
|
|
"+const s2 = struct{i float;}{j: 6}",
|
|
"+const s3 = time.Month{}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "4494c26fb9999b04a2c61cf39c32d1d24e8d5f8d..206d1a39d3694158ecdad426673ec76d48e374af"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-struct-literals-delete-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"struct-literals.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
12
|
|
],
|
|
"end": [
|
|
4,
|
|
15
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
12
|
|
],
|
|
"end": [
|
|
4,
|
|
18
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'Dog' identifier with the 'Person' identifier in the s1 var assignment of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
8,
|
|
21
|
|
],
|
|
"end": [
|
|
8,
|
|
26
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
8,
|
|
21
|
|
],
|
|
"end": [
|
|
8,
|
|
24
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'float' identifier with the 'int' identifier in the struct{i int;} struct type of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
8,
|
|
29
|
|
],
|
|
"end": [
|
|
8,
|
|
30
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
8,
|
|
27
|
|
],
|
|
"end": [
|
|
8,
|
|
28
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'j' identifier with the 'i' identifier in the i: 5 pair of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
8,
|
|
32
|
|
],
|
|
"end": [
|
|
8,
|
|
33
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
8,
|
|
30
|
|
],
|
|
"end": [
|
|
8,
|
|
31
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced '6' with '5' in the i: 5 pair of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
9,
|
|
12
|
|
],
|
|
"end": [
|
|
9,
|
|
22
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
9,
|
|
12
|
|
],
|
|
"end": [
|
|
9,
|
|
21
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'time.Month' qualified identifier with the 'time.Time' qualified identifier in the s3 var assignment of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"struct-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/struct-literals.go b/struct-literals.go",
|
|
"index 06724a46..e6fd4f15 100644",
|
|
"--- a/struct-literals.go",
|
|
"+++ b/struct-literals.go",
|
|
"@@ -1,10 +1,10 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const s1 = Dog{",
|
|
"+const s1 = Person{",
|
|
" name: \"Frank\",",
|
|
" Age: \"5 months\",",
|
|
" }",
|
|
"-const s2 = struct{i float;}{j: 6}",
|
|
"-const s3 = time.Month{}",
|
|
"+const s2 = struct{i int;}{i: 5}",
|
|
"+const s3 = time.Time{}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "206d1a39d3694158ecdad426673ec76d48e374af..021bb0b55e32d2b017f2b4b29dddcd790cea242d"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-struct-literals-delete-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"struct-literals.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
7,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 's1' var assignment in the main function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
8,
|
|
7
|
|
],
|
|
"end": [
|
|
8,
|
|
32
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 's2' var assignment in the main function"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
9,
|
|
7
|
|
],
|
|
"end": [
|
|
9,
|
|
23
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 's3' var assignment in the main function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"struct-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/struct-literals.go b/struct-literals.go",
|
|
"index e6fd4f15..79058077 100644",
|
|
"--- a/struct-literals.go",
|
|
"+++ b/struct-literals.go",
|
|
"@@ -1,10 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const s1 = Person{",
|
|
"-name: \"Frank\",",
|
|
"-Age: \"5 months\",",
|
|
"-}",
|
|
"-const s2 = struct{i int;}{i: 5}",
|
|
"-const s3 = time.Time{}",
|
|
"+",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "021bb0b55e32d2b017f2b4b29dddcd790cea242d..dc132533bd95c31a8f5e9bb4b9a62e2feb4c10f6"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-struct-literals-teardown-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"struct-literals.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
1,
|
|
13
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
3,
|
|
1
|
|
],
|
|
"end": [
|
|
5,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"struct-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/struct-literals.go b/struct-literals.go",
|
|
"index 79058077..e69de29b 100644",
|
|
"--- a/struct-literals.go",
|
|
"+++ b/struct-literals.go",
|
|
"@@ -1,5 +0,0 @@",
|
|
"-package main",
|
|
"-",
|
|
"-func main() {",
|
|
"-",
|
|
"-}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "dc132533bd95c31a8f5e9bb4b9a62e2feb4c10f6..1d4f678537c1a2636fd9eba370de9e81de874c72"
|
|
}]
|