mirror of
https://github.com/github/semantic.git
synced 2024-12-23 14:54:16 +03:00
343 lines
11 KiB
JSON
343 lines
11 KiB
JSON
[{
|
|
"testCaseDescription": "go-function-literals-setup-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"function-literals.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"function-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/function-literals.go b/function-literals.go",
|
|
"index e69de29..7905807 100644",
|
|
"--- a/function-literals.go",
|
|
"+++ b/function-literals.go",
|
|
"@@ -0,0 +1,5 @@",
|
|
"+package main",
|
|
"+",
|
|
"+func main() {",
|
|
"+",
|
|
"+}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "3e502021cd3d8c7e11e89ade83196888145fb71f..b09fbf1bb5060c8ba4a1734ffba2ec051f27b17f"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-function-literals-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"function-literals.go": [
|
|
{
|
|
"span": {
|
|
"insert": {
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
6,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Added the 's1' var assignment in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"function-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/function-literals.go b/function-literals.go",
|
|
"index 7905807..1f4ead9 100644",
|
|
"--- a/function-literals.go",
|
|
"+++ b/function-literals.go",
|
|
"@@ -1,5 +1,7 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-",
|
|
"+const s1 = func(s string) (int, int) {",
|
|
"+return 1, 2",
|
|
"+}",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "b09fbf1bb5060c8ba4a1734ffba2ec051f27b17f..28754acd8cf1debdce1a12414f67279c45e1579f"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-function-literals-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"function-literals.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
19
|
|
],
|
|
"end": [
|
|
4,
|
|
25
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
19
|
|
],
|
|
"end": [
|
|
4,
|
|
22
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'string' identifier with the 'int' identifier in the s1 var assignment of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
17
|
|
],
|
|
"end": [
|
|
4,
|
|
18
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
17
|
|
],
|
|
"end": [
|
|
4,
|
|
18
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 's' identifier with the 'b' identifier in the s1 var assignment of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"function-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/function-literals.go b/function-literals.go",
|
|
"index 1f4ead9..7b03466 100644",
|
|
"--- a/function-literals.go",
|
|
"+++ b/function-literals.go",
|
|
"@@ -1,7 +1,7 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const s1 = func(s string) (int, int) {",
|
|
"+const s1 = func(b int) (string, string) {",
|
|
" return 1, 2",
|
|
" }",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "28754acd8cf1debdce1a12414f67279c45e1579f..769e625f4f8dfb13a9255399f7372cb196804898"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-function-literals-delete-replacement-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"function-literals.go": [
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
19
|
|
],
|
|
"end": [
|
|
4,
|
|
22
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
19
|
|
],
|
|
"end": [
|
|
4,
|
|
25
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'int' identifier with the 'string' identifier in the s1 var assignment of the 'main' function"
|
|
},
|
|
{
|
|
"span": {
|
|
"replace": [
|
|
{
|
|
"start": [
|
|
4,
|
|
17
|
|
],
|
|
"end": [
|
|
4,
|
|
18
|
|
]
|
|
},
|
|
{
|
|
"start": [
|
|
4,
|
|
17
|
|
],
|
|
"end": [
|
|
4,
|
|
18
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"summary": "Replaced the 'b' identifier with the 's' identifier in the s1 var assignment of the 'main' function"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"function-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/function-literals.go b/function-literals.go",
|
|
"index 7b03466..1f4ead9 100644",
|
|
"--- a/function-literals.go",
|
|
"+++ b/function-literals.go",
|
|
"@@ -1,7 +1,7 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const s1 = func(b int) (string, string) {",
|
|
"+const s1 = func(s string) (int, int) {",
|
|
" return 1, 2",
|
|
" }",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "769e625f4f8dfb13a9255399f7372cb196804898..6235b7da121a133dd7cd12984c13d71a8fbb828a"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-function-literals-delete-insert-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"function-literals.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
4,
|
|
7
|
|
],
|
|
"end": [
|
|
6,
|
|
2
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 's1' var assignment in the main function of the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"function-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/function-literals.go b/function-literals.go",
|
|
"index 1f4ead9..7905807 100644",
|
|
"--- a/function-literals.go",
|
|
"+++ b/function-literals.go",
|
|
"@@ -1,7 +1,5 @@",
|
|
" package main",
|
|
" ",
|
|
" func main() {",
|
|
"-const s1 = func(s string) (int, int) {",
|
|
"-return 1, 2",
|
|
"-}",
|
|
"+",
|
|
" }"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "6235b7da121a133dd7cd12984c13d71a8fbb828a..a6fc93da4d6bf1634997a6c97f8f861117147197"
|
|
}
|
|
,{
|
|
"testCaseDescription": "go-function-literals-teardown-test",
|
|
"expectedResult": {
|
|
"changes": {
|
|
"function-literals.go": [
|
|
{
|
|
"span": {
|
|
"delete": {
|
|
"start": [
|
|
1,
|
|
1
|
|
],
|
|
"end": [
|
|
6,
|
|
1
|
|
]
|
|
}
|
|
},
|
|
"summary": "Deleted the 'main' module"
|
|
}
|
|
]
|
|
},
|
|
"errors": {}
|
|
},
|
|
"filePaths": [
|
|
"function-literals.go"
|
|
],
|
|
"patch": [
|
|
"diff --git a/function-literals.go b/function-literals.go",
|
|
"index 7905807..e69de29 100644",
|
|
"--- a/function-literals.go",
|
|
"+++ b/function-literals.go",
|
|
"@@ -1,5 +0,0 @@",
|
|
"-package main",
|
|
"-",
|
|
"-func main() {",
|
|
"-",
|
|
"-}"
|
|
],
|
|
"gitDir": "test/corpus/repos/go",
|
|
"shas": "a6fc93da4d6bf1634997a6c97f8f861117147197..f87f118c5fbe213deaa773d37f03f8f82215d1c9"
|
|
}]
|