mirror of
https://github.com/github/semantic.git
synced 2024-12-26 00:12:29 +03:00
617 lines
21 KiB
JSON
617 lines
21 KiB
JSON
[{
|
|
"testCaseDescription": "go-single-line-function-declarations-setup-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"single-line-function-declarations.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"single-line-function-declarations.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/single-line-function-declarations.go b/single-line-function-declarations.go",
|
|
"index e69de29b..79058077 100644",
|
|
"--- a/single-line-function-declarations.go",
|
|
"+++ b/single-line-function-declarations.go",
|
|
"@@ -0,0 +1,5 @@",
|
|
"+package main",
|
|
"+",
|
|
"+func main() {",
|
|
"+",
|
|
"+}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "6db5b98058f6889a0e2a736415bbd346a877a81d..2c161f750f49963b5cdccc4430335c284c390a20"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-single-line-function-declarations-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"single-line-function-declarations.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
6
|
|
],
|
|
"end": [
|
|
4,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'f1()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
13
|
|
],
|
|
"end": [
|
|
4,
|
|
16
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'f2()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
5,
|
|
13
|
|
],
|
|
"end": [
|
|
5,
|
|
16
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
5,
|
|
18
|
|
],
|
|
"end": [
|
|
5,
|
|
21
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'b()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
6,
|
|
6
|
|
],
|
|
"end": [
|
|
6,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'f3()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
6,
|
|
13
|
|
],
|
|
"end": [
|
|
6,
|
|
16
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'a()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
6,
|
|
18
|
|
],
|
|
"end": [
|
|
6,
|
|
21
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'b()' function call in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"single-line-function-declarations.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/single-line-function-declarations.go b/single-line-function-declarations.go",
|
|
"index 79058077..0339b429 100644",
|
|
"--- a/single-line-function-declarations.go",
|
|
"+++ b/single-line-function-declarations.go",
|
|
"@@ -1,5 +1,7 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-",
|
|
"+func f1() { a() }",
|
|
"+func f2() { a(); b() }",
|
|
"+func f3() { a(); b(); }",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "2c161f750f49963b5cdccc4430335c284c390a20..e38ecd9064457caa47a81918df9cba3780e1983b"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-single-line-function-declarations-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"single-line-function-declarations.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
6
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
6
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'f1' identifier with the 'g1' identifier in the g1() function call of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'g2()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'f2()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
6,
|
|
6
|
|
],
|
|
"end": [
|
|
6,
|
|
8
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
6,
|
|
6
|
|
],
|
|
"end": [
|
|
6,
|
|
8
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'f3' identifier with the 'g3' identifier in the g3() function call of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"single-line-function-declarations.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/single-line-function-declarations.go b/single-line-function-declarations.go",
|
|
"index 0339b429..5bfe23f4 100644",
|
|
"--- a/single-line-function-declarations.go",
|
|
"+++ b/single-line-function-declarations.go",
|
|
"@@ -1,7 +1,7 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-func f1() { a() }",
|
|
"-func f2() { a(); b() }",
|
|
"-func f3() { a(); b(); }",
|
|
"+func g1() { a() }",
|
|
"+func g2() { a(); b() }",
|
|
"+func g3() { a(); b(); }",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "e38ecd9064457caa47a81918df9cba3780e1983b..03cd2ea0d245e393c8b18b8f11f054192852e0a5"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-single-line-function-declarations-delete-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"single-line-function-declarations.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
6
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
6
|
|
],
|
|
"end": [
|
|
4,
|
|
8
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'g1' identifier with the 'f1' identifier in the f1() function call of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'f2()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'g2()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
6,
|
|
6
|
|
],
|
|
"end": [
|
|
6,
|
|
8
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
6,
|
|
6
|
|
],
|
|
"end": [
|
|
6,
|
|
8
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'g3' identifier with the 'f3' identifier in the f3() function call of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"single-line-function-declarations.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/single-line-function-declarations.go b/single-line-function-declarations.go",
|
|
"index 5bfe23f4..0339b429 100644",
|
|
"--- a/single-line-function-declarations.go",
|
|
"+++ b/single-line-function-declarations.go",
|
|
"@@ -1,7 +1,7 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-func g1() { a() }",
|
|
"-func g2() { a(); b() }",
|
|
"-func g3() { a(); b(); }",
|
|
"+func f1() { a() }",
|
|
"+func f2() { a(); b() }",
|
|
"+func f3() { a(); b(); }",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "03cd2ea0d245e393c8b18b8f11f054192852e0a5..5882272a60ff8b97c7f1468c49a18554917cb66c"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-single-line-function-declarations-delete-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"single-line-function-declarations.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
6
|
|
],
|
|
"end": [
|
|
4,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'f1()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
13
|
|
],
|
|
"end": [
|
|
4,
|
|
16
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
5,
|
|
6
|
|
],
|
|
"end": [
|
|
5,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'f2()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
5,
|
|
13
|
|
],
|
|
"end": [
|
|
5,
|
|
16
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
5,
|
|
18
|
|
],
|
|
"end": [
|
|
5,
|
|
21
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'b()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
6,
|
|
6
|
|
],
|
|
"end": [
|
|
6,
|
|
10
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'f3()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
6,
|
|
13
|
|
],
|
|
"end": [
|
|
6,
|
|
16
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'a()' function call in the main function of the 'main' module"
|
|
},
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
6,
|
|
18
|
|
],
|
|
"end": [
|
|
6,
|
|
21
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'b()' function call in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"single-line-function-declarations.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/single-line-function-declarations.go b/single-line-function-declarations.go",
|
|
"index 0339b429..79058077 100644",
|
|
"--- a/single-line-function-declarations.go",
|
|
"+++ b/single-line-function-declarations.go",
|
|
"@@ -1,7 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-func f1() { a() }",
|
|
"-func f2() { a(); b() }",
|
|
"-func f3() { a(); b(); }",
|
|
"+",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "5882272a60ff8b97c7f1468c49a18554917cb66c..96e8ac672432d770311f0804173e5c719a086039"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-single-line-function-declarations-teardown-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"single-line-function-declarations.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"single-line-function-declarations.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/single-line-function-declarations.go b/single-line-function-declarations.go",
|
|
"index 79058077..e69de29b 100644",
|
|
"--- a/single-line-function-declarations.go",
|
|
"+++ b/single-line-function-declarations.go",
|
|
"@@ -1,5 +0,0 @@",
|
|
"-package main",
|
|
"-",
|
|
"-func main() {",
|
|
"-",
|
|
"-}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "96e8ac672432d770311f0804173e5c719a086039..f889c39f6b16e9b46e41c62a86630722d9d746de"
|
|
}]
|