1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 23:11:50 +03:00
semantic/test/corpus/diff-summaries/go/map-literals.json

201 lines
5.4 KiB
JSON
Raw Normal View History

2016-11-02 04:36:43 +03:00
[{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-map-literals-setup-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"map-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-02 04:36:43 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
2016-11-02 04:36:43 +03:00
}
]
},
2016-11-02 21:37:30 +03:00
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"map-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/map-literals.go b/map-literals.go",
2016-12-02 00:03:52 +03:00
"index e69de29..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/map-literals.go",
"+++ b/map-literals.go",
2016-12-02 00:03:52 +03:00
"@@ -0,0 +1,5 @@",
"+package main",
"+",
"+func main() {",
"+",
2016-11-11 00:19:53 +03:00
"+}"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-07 21:26:31 +03:00
"shas": "b8fc38a2567c3bc61d152e63b8a09cd5f44361b4..cd38714be48dfc544ea9921c9c33b019e26cf68d"
2016-11-02 04:36:43 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-map-literals-insert-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {},
2016-11-02 21:37:30 +03:00
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"map-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/map-literals.go b/map-literals.go",
2016-12-02 00:03:52 +03:00
"index 7905807..bb99b5b 100644",
2016-11-11 00:19:53 +03:00
"--- a/map-literals.go",
"+++ b/map-literals.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +1,8 @@",
" package main",
" ",
" func main() {",
"-",
2016-11-11 00:19:53 +03:00
"+const s = map[string]string{",
"+\"hi\": \"hello\",",
"+\"bye\": \"goodbye\",",
"+}",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-07 21:26:31 +03:00
"shas": "cd38714be48dfc544ea9921c9c33b019e26cf68d..66e12e3a7d4d7004b439b7b3cd8efac312d5c83f"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-map-literals-replacement-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {},
2016-11-02 21:37:30 +03:00
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"map-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/map-literals.go b/map-literals.go",
2016-12-02 00:03:52 +03:00
"index bb99b5b..a9e0b66 100644",
2016-11-11 00:19:53 +03:00
"--- a/map-literals.go",
"+++ b/map-literals.go",
2016-12-02 00:03:52 +03:00
"@@ -1,8 +1,8 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-const s = map[string]string{",
"-\"hi\": \"hello\",",
"-\"bye\": \"goodbye\",",
"+const s = map[string]int{",
"+\"foo\": \"bar\",",
"+\"baz\": \"hello\",",
" }",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-07 21:26:31 +03:00
"shas": "66e12e3a7d4d7004b439b7b3cd8efac312d5c83f..1b71469bf4d097bd0a5db0e10093fa3af6393978"
2016-11-02 04:36:43 +03:00
}
,{
2016-11-02 21:37:30 +03:00
"testCaseDescription": "go-map-literals-delete-replacement-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {},
2016-11-02 21:37:30 +03:00
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"map-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/map-literals.go b/map-literals.go",
2016-12-02 00:03:52 +03:00
"index a9e0b66..bb99b5b 100644",
2016-11-11 00:19:53 +03:00
"--- a/map-literals.go",
"+++ b/map-literals.go",
2016-12-02 00:03:52 +03:00
"@@ -1,8 +1,8 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-const s = map[string]int{",
"-\"foo\": \"bar\",",
"-\"baz\": \"hello\",",
2016-12-02 00:03:52 +03:00
"+const s = map[string]string{",
"+\"hi\": \"hello\",",
"+\"bye\": \"goodbye\",",
2016-11-11 00:19:53 +03:00
" }",
" }"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-07 21:26:31 +03:00
"shas": "1b71469bf4d097bd0a5db0e10093fa3af6393978..544b224ae77bd0bf3eb25a12d9fce8a034f1539c"
2016-11-02 04:36:43 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-map-literals-delete-insert-test",
2016-11-02 04:36:43 +03:00
"expectedResult": {
2016-12-02 00:03:52 +03:00
"changes": {},
2016-11-02 21:37:30 +03:00
"errors": {}
},
"filePaths": [
"map-literals.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/map-literals.go b/map-literals.go",
2016-12-02 00:03:52 +03:00
"index bb99b5b..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/map-literals.go",
"+++ b/map-literals.go",
2016-12-02 00:03:52 +03:00
"@@ -1,8 +1,5 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-const s = map[string]string{",
"-\"hi\": \"hello\",",
"-\"bye\": \"goodbye\",",
"-}",
2016-12-02 00:03:52 +03:00
"+",
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-07 21:26:31 +03:00
"shas": "544b224ae77bd0bf3eb25a12d9fce8a034f1539c..991308050e04ecc4143c37ff95251ae064fe63d8"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-map-literals-teardown-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"map-literals.go": [
2016-11-02 04:36:43 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
1,
2016-11-02 04:36:43 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-02 04:36:43 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
2016-11-02 04:36:43 +03:00
}
]
2016-11-02 21:37:30 +03:00
},
"errors": {}
2016-11-02 04:36:43 +03:00
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"map-literals.go"
2016-11-02 04:36:43 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/map-literals.go b/map-literals.go",
2016-12-02 00:03:52 +03:00
"index 7905807..e69de29 100644",
2016-11-11 00:19:53 +03:00
"--- a/map-literals.go",
"+++ b/map-literals.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +0,0 @@",
"-package main",
"-",
"-func main() {",
"-",
2016-11-11 00:19:53 +03:00
"-}"
],
2016-11-02 04:36:43 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-07 21:26:31 +03:00
"shas": "991308050e04ecc4143c37ff95251ae064fe63d8..59f328f060e69fc8146e0869b98743214acc67a8"
2016-11-02 04:36:43 +03:00
}]