mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
489 lines
15 KiB
JSON
489 lines
15 KiB
JSON
[{
|
|
"testCaseDescription": "go-if-statements-setup-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"if-statements.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"if-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/if-statements.go b/if-statements.go",
|
|
"index e69de29b..79058077 100644",
|
|
"--- a/if-statements.go",
|
|
"+++ b/if-statements.go",
|
|
"@@ -0,0 +1,5 @@",
|
|
"+package main",
|
|
"+",
|
|
"+func main() {",
|
|
"+",
|
|
"+}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "7036a0833af811cd428009c760acce8b342cc0ae..120d88a3c8fe2a4d39e9807797fa40cdf8980a14"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-if-statements-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"if-statements.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a()' if statement in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
7,
|
|
1
|
|
],
|
|
"end": [
|
|
9,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a := b(); c' if statement in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
10,
|
|
1
|
|
],
|
|
"end": [
|
|
14,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a()' if statement in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"if-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/if-statements.go b/if-statements.go",
|
|
"index 79058077..76a6f335 100644",
|
|
"--- a/if-statements.go",
|
|
"+++ b/if-statements.go",
|
|
"@@ -1,5 +1,15 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-",
|
|
"+if a() {",
|
|
"+b()",
|
|
"+}",
|
|
"+if a := b(); c {",
|
|
"+d()",
|
|
"+}",
|
|
"+if a() {",
|
|
"+b()",
|
|
"+} else {",
|
|
"+c()",
|
|
"+}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "120d88a3c8fe2a4d39e9807797fa40cdf8980a14..f32f275a044160bafdd5a549e2bba5147df47a84"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-if-statements-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"if-statements.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
4
|
|
],
|
|
"end": [
|
|
4,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
4
|
|
],
|
|
"end": [
|
|
4,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'a' identifier with the 'x' identifier in the x() function call of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
7,
|
|
4
|
|
],
|
|
"end": [
|
|
7,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
7,
|
|
4
|
|
],
|
|
"end": [
|
|
7,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'a' identifier with the 'y' identifier in the y var assignment of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
10,
|
|
4
|
|
],
|
|
"end": [
|
|
10,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
10,
|
|
4
|
|
],
|
|
"end": [
|
|
10,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'a' identifier with the 'z' identifier in the z() function call of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"if-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/if-statements.go b/if-statements.go",
|
|
"index 76a6f335..39dfc0da 100644",
|
|
"--- a/if-statements.go",
|
|
"+++ b/if-statements.go",
|
|
"@@ -1,13 +1,13 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-if a() {",
|
|
"+if x() {",
|
|
" b()",
|
|
" }",
|
|
"-if a := b(); c {",
|
|
"+if y := b(); c {",
|
|
" d()",
|
|
" }",
|
|
"-if a() {",
|
|
"+if z() {",
|
|
" b()",
|
|
" } else {",
|
|
" c()"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "f32f275a044160bafdd5a549e2bba5147df47a84..453f21af1fd7c9237d1ffb59da81333512d3febf"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-if-statements-delete-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"if-statements.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
4
|
|
],
|
|
"end": [
|
|
4,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
4
|
|
],
|
|
"end": [
|
|
4,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'x' identifier with the 'a' identifier in the a() function call of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
7,
|
|
4
|
|
],
|
|
"end": [
|
|
7,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
7,
|
|
4
|
|
],
|
|
"end": [
|
|
7,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'y' identifier with the 'a' identifier in the a var assignment of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
10,
|
|
4
|
|
],
|
|
"end": [
|
|
10,
|
|
5
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
10,
|
|
4
|
|
],
|
|
"end": [
|
|
10,
|
|
5
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'z' identifier with the 'a' identifier in the a() function call of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"if-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/if-statements.go b/if-statements.go",
|
|
"index 39dfc0da..76a6f335 100644",
|
|
"--- a/if-statements.go",
|
|
"+++ b/if-statements.go",
|
|
"@@ -1,13 +1,13 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-if x() {",
|
|
"+if a() {",
|
|
" b()",
|
|
" }",
|
|
"-if y := b(); c {",
|
|
"+if a := b(); c {",
|
|
" d()",
|
|
" }",
|
|
"-if z() {",
|
|
"+if a() {",
|
|
" b()",
|
|
" } else {",
|
|
" c()"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "453f21af1fd7c9237d1ffb59da81333512d3febf..e7d12696b36a456fd9efb0842f08cfdeef2c5441"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-if-statements-delete-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"if-statements.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a()' if statement in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
7,
|
|
1
|
|
],
|
|
"end": [
|
|
9,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a := b(); c' if statement in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
10,
|
|
1
|
|
],
|
|
"end": [
|
|
14,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a()' if statement in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"if-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/if-statements.go b/if-statements.go",
|
|
"index 76a6f335..79058077 100644",
|
|
"--- a/if-statements.go",
|
|
"+++ b/if-statements.go",
|
|
"@@ -1,15 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-if a() {",
|
|
"-b()",
|
|
"-}",
|
|
"-if a := b(); c {",
|
|
"-d()",
|
|
"-}",
|
|
"-if a() {",
|
|
"-b()",
|
|
"-} else {",
|
|
"-c()",
|
|
"-}",
|
|
"+",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "e7d12696b36a456fd9efb0842f08cfdeef2c5441..71efd75ec95c70709301737e717aa90c58fb5e5c"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-if-statements-teardown-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"if-statements.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"if-statements.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/if-statements.go b/if-statements.go",
|
|
"index 79058077..e69de29b 100644",
|
|
"--- a/if-statements.go",
|
|
"+++ b/if-statements.go",
|
|
"@@ -1,5 +0,0 @@",
|
|
"-package main",
|
|
"-",
|
|
"-func main() {",
|
|
"-",
|
|
"-}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "71efd75ec95c70709301737e717aa90c58fb5e5c..44a4f5e13671aebdc4a74395aa29daf2b27100ba"
|
|
}]
|