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

492 lines
16 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": [
1,
13
2016-11-02 04:36:43 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
},
{
"span": {
"insert": {
"start": [
3,
1
],
"end": [
5,
2
]
}
},
"summary": "Added the 'main' function"
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",
2017-01-17 23:26:07 +03:00
"index e69de29b..79058077 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",
2017-01-27 22:50:27 +03:00
"shas": "4de2997942b814c82e06fecad317c0315052231e..2757ceba947af913b50854a40a3bbc60d4ab6e58"
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-07 23:41:28 +03:00
"changes": {
"map-literals.go": [
{
"span": {
"insert": {
"start": [
4,
2017-01-10 23:09:09 +03:00
7
2016-12-07 23:41:28 +03:00
],
"end": [
7,
2
]
}
},
"summary": "Added the 's' var assignment in the main function"
2016-12-07 23:41:28 +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",
2017-01-17 23:26:07 +03:00
"index 79058077..bb99b5ba 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",
2017-01-27 22:50:27 +03:00
"shas": "2757ceba947af913b50854a40a3bbc60d4ab6e58..806a3a2bb6ebb7d7a939f8d9c924c18e55fc29bd"
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-07 23:41:28 +03:00
"changes": {
"map-literals.go": [
{
"span": {
2017-01-10 01:21:36 +03:00
"replace": [
{
"start": [
4,
22
],
"end": [
4,
28
]
},
{
"start": [
4,
22
],
"end": [
4,
25
]
}
]
},
"summary": "Replaced the 'string' identifier with the 'int' identifier in the map[string]int composite_literal of the 'main' function"
2017-01-10 01:21:36 +03:00
},
{
"span": {
"insert": {
2016-12-07 23:41:28 +03:00
"start": [
2017-01-10 01:21:36 +03:00
5,
1
2016-12-07 23:41:28 +03:00
],
"end": [
2017-01-10 01:21:36 +03:00
5,
13
2016-12-07 23:41:28 +03:00
]
}
},
"summary": "Added the '\"foo\": \"bar\"' pair in the map[string]int composite_literal of the 'main' function"
2016-12-07 23:41:28 +03:00
},
{
"span": {
"replace": [
{
"start": [
5,
1
],
"end": [
5,
5
]
},
{
"start": [
2017-01-10 01:21:36 +03:00
6,
2016-12-07 23:41:28 +03:00
1
],
"end": [
2017-01-10 01:21:36 +03:00
6,
2016-12-07 23:41:28 +03:00
6
]
}
]
},
2017-01-18 21:23:54 +03:00
"summary": "Replaced the \"hi\" string with the \"baz\" string in the \"baz\": \"hello\" pair of the 'main' function"
2016-12-07 23:41:28 +03:00
},
{
"span": {
2017-01-10 01:21:36 +03:00
"delete": {
"start": [
6,
1
],
"end": [
6,
17
]
}
2016-12-07 23:41:28 +03:00
},
"summary": "Deleted the '\"bye\": \"goodbye\"' pair in the map[string]int composite_literal of the 'main' function"
2016-12-07 23:41:28 +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",
2017-01-17 23:26:07 +03:00
"index bb99b5ba..a9e0b664 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",
2017-01-27 22:50:27 +03:00
"shas": "806a3a2bb6ebb7d7a939f8d9c924c18e55fc29bd..b40a309a1a5858189837ed17aeacc473c1291618"
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-07 23:41:28 +03:00
"changes": {
"map-literals.go": [
{
"span": {
"replace": [
{
"start": [
4,
22
],
"end": [
4,
25
]
},
{
"start": [
4,
2017-01-10 01:21:36 +03:00
22
2016-12-07 23:41:28 +03:00
],
"end": [
4,
2017-01-10 01:21:36 +03:00
28
2016-12-07 23:41:28 +03:00
]
}
]
},
"summary": "Replaced the 'int' identifier with the 'string' identifier in the map[string]string composite_literal of the 'main' function"
2016-12-07 23:41:28 +03:00
},
{
"span": {
"replace": [
{
"start": [
5,
1
],
"end": [
5,
6
]
},
{
"start": [
5,
1
],
"end": [
5,
5
]
}
]
},
2017-01-18 21:23:54 +03:00
"summary": "Replaced the \"foo\" string with the \"hi\" string in the \"hi\": \"hello\" pair of the 'main' function"
2016-12-07 23:41:28 +03:00
},
{
"span": {
"replace": [
{
"start": [
5,
8
],
"end": [
5,
13
]
},
{
"start": [
5,
7
],
"end": [
5,
14
]
}
]
},
2017-01-18 21:23:54 +03:00
"summary": "Replaced the \"bar\" string with the \"hello\" string in the \"hi\": \"hello\" pair of the 'main' function"
2016-12-07 23:41:28 +03:00
},
{
"span": {
"replace": [
{
"start": [
6,
1
],
"end": [
6,
6
]
},
{
"start": [
6,
1
],
"end": [
6,
6
]
}
]
},
2017-01-18 21:23:54 +03:00
"summary": "Replaced the \"baz\" string with the \"bye\" string in the \"bye\": \"goodbye\" pair of the 'main' function"
2016-12-07 23:41:28 +03:00
},
{
"span": {
"replace": [
{
"start": [
6,
8
],
"end": [
6,
15
]
},
{
"start": [
6,
8
],
"end": [
6,
17
]
}
]
},
2017-01-18 21:23:54 +03:00
"summary": "Replaced the \"hello\" string with the \"goodbye\" string in the \"bye\": \"goodbye\" pair of the 'main' function"
2016-12-07 23:41:28 +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",
2017-01-17 23:26:07 +03:00
"index a9e0b664..bb99b5ba 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",
2017-01-27 22:50:27 +03:00
"shas": "b40a309a1a5858189837ed17aeacc473c1291618..0153290610427d58341c455705ffd3c84393d41f"
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-07 23:41:28 +03:00
"changes": {
"map-literals.go": [
{
"span": {
"delete": {
"start": [
4,
2017-01-10 23:09:09 +03:00
7
2016-12-07 23:41:28 +03:00
],
"end": [
7,
2
]
}
},
"summary": "Deleted the 's' var assignment in the main function"
2016-12-07 23:41:28 +03:00
}
]
},
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",
2017-01-17 23:26:07 +03:00
"index bb99b5ba..79058077 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",
2017-01-27 22:50:27 +03:00
"shas": "0153290610427d58341c455705ffd3c84393d41f..c6bc2ec0da1f9933c4b50f9e035264de96a2a201"
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": [
1,
13
2016-11-02 04:36:43 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
},
{
"span": {
"delete": {
"start": [
3,
1
],
"end": [
5,
2
]
}
},
"summary": "Deleted the 'main' function"
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",
2017-01-17 23:26:07 +03:00
"index 79058077..e69de29b 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",
2017-01-27 22:50:27 +03:00
"shas": "c6bc2ec0da1f9933c4b50f9e035264de96a2a201..e0994dd54a2039ebc5baa7cd76b5db9764beb26a"
2016-11-02 04:36:43 +03:00
}]