1
1
mirror of https://github.com/github/semantic.git synced 2024-12-23 14:54:16 +03:00
semantic/test/corpus/diff-summaries/go/label-statements.json

287 lines
8.5 KiB
JSON
Raw Normal View History

2016-11-01 01:22:10 +03:00
[{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-label-statements-setup-test",
2016-11-01 01:22:10 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"label-statements.go": [
2016-11-01 01:22:10 +03:00
{
"span": {
"insert": {
"start": [
2016-12-02 00:03:52 +03:00
1,
1
2016-11-01 01:22:10 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-01 01:22:10 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
2016-11-01 01:22:10 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"label-statements.go"
2016-11-01 01:22:10 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/label-statements.go b/label-statements.go",
2017-01-12 02:28:58 +03:00
"index e69de29..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/label-statements.go",
"+++ b/label-statements.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-01 01:22:10 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-12 02:28:58 +03:00
"shas": "96c7ac919c323eb7ae47923e3d286bc33091b733..d76b5225089f9faa2958a5ab161a2249611011d1"
2016-11-01 01:22:10 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-label-statements-insert-test",
2016-11-01 01:22:10 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"label-statements.go": [
2016-11-11 00:19:53 +03:00
{
"span": {
"insert": {
"start": [
5,
3
],
"end": [
5,
15
]
}
2016-11-01 01:22:10 +03:00
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'insert_label' identifier in the main function of the 'main' module"
2016-11-01 01:22:10 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"label-statements.go"
2016-11-01 01:22:10 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/label-statements.go b/label-statements.go",
2017-01-12 02:28:58 +03:00
"index 7905807..b0a2969 100644",
2016-11-11 00:19:53 +03:00
"--- a/label-statements.go",
"+++ b/label-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +1,7 @@",
" package main",
" ",
" func main() {",
"-",
2016-11-11 00:19:53 +03:00
"+{",
"+ insert_label:",
"+}",
" }"
],
2016-11-01 01:22:10 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-12 02:28:58 +03:00
"shas": "d76b5225089f9faa2958a5ab161a2249611011d1..c127745cde55bf842c216f88f950bdd2ca2d8328"
2016-11-01 01:22:10 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-label-statements-replacement-test",
2016-11-01 01:22:10 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"label-statements.go": [
2016-11-01 01:22:10 +03:00
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
3
2016-11-01 01:22:10 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
5,
15
2016-11-01 01:22:10 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
3
2016-11-01 01:22:10 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
5,
20
2016-11-01 01:22:10 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'insert_label' identifier with the 'replacement_label' identifier in the main function of the 'main' module"
2016-11-01 01:22:10 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"label-statements.go"
2016-11-01 01:22:10 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/label-statements.go b/label-statements.go",
2017-01-12 02:28:58 +03:00
"index b0a2969..3d3cf16 100644",
2016-11-11 00:19:53 +03:00
"--- a/label-statements.go",
"+++ b/label-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -2,6 +2,6 @@ package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
" {",
2016-12-02 00:03:52 +03:00
"- insert_label:",
"+ replacement_label:",
2016-11-11 00:19:53 +03:00
" }",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-01 01:22:10 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-12 02:28:58 +03:00
"shas": "c127745cde55bf842c216f88f950bdd2ca2d8328..d1bf058ffa540c05e2ef019ea8c41a4eb9587e1b"
2016-11-01 01:22:10 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-label-statements-delete-replacement-test",
2016-11-01 01:22:10 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"label-statements.go": [
2016-11-01 01:22:10 +03:00
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
3
2016-11-01 01:22:10 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
5,
20
2016-11-01 01:22:10 +03:00
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
5,
2016-11-02 21:37:30 +03:00
3
2016-11-01 01:22:10 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
5,
15
2016-11-01 01:22:10 +03:00
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'replacement_label' identifier with the 'insert_label' identifier in the main function of the 'main' module"
2016-11-01 01:22:10 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"label-statements.go"
2016-11-01 01:22:10 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/label-statements.go b/label-statements.go",
2017-01-12 02:28:58 +03:00
"index 3d3cf16..b0a2969 100644",
2016-11-11 00:19:53 +03:00
"--- a/label-statements.go",
"+++ b/label-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -2,6 +2,6 @@ package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
" {",
2016-12-02 00:03:52 +03:00
"- replacement_label:",
"+ insert_label:",
2016-11-11 00:19:53 +03:00
" }",
2016-12-02 00:03:52 +03:00
" }"
2016-11-11 00:19:53 +03:00
],
2016-11-01 01:22:10 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-12 02:28:58 +03:00
"shas": "d1bf058ffa540c05e2ef019ea8c41a4eb9587e1b..e9fdb354e62eb05a072a6e6fa6390a2e1621be58"
2016-11-01 01:22:10 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-label-statements-delete-insert-test",
2016-11-01 01:22:10 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"label-statements.go": [
2016-11-01 01:22:10 +03:00
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
3
2016-11-01 01:22:10 +03:00
],
"end": [
2016-11-11 00:19:53 +03:00
5,
2016-11-02 21:37:30 +03:00
15
2016-11-01 01:22:10 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'insert_label' identifier in the main function of the 'main' module"
2016-11-01 01:22:10 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"label-statements.go"
2016-11-01 01:22:10 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/label-statements.go b/label-statements.go",
2017-01-12 02:28:58 +03:00
"index b0a2969..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/label-statements.go",
"+++ b/label-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,7 +1,5 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-{",
"- insert_label:",
"-}",
2016-12-02 00:03:52 +03:00
"+",
2016-11-11 00:19:53 +03:00
" }"
],
2016-11-01 01:22:10 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-12 02:28:58 +03:00
"shas": "e9fdb354e62eb05a072a6e6fa6390a2e1621be58..296ef5c2694f2d9d95288a9370b750630ece66a8"
2016-11-01 01:22:10 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-label-statements-teardown-test",
2016-11-01 01:22:10 +03:00
"expectedResult": {
"changes": {
2016-11-02 21:37:30 +03:00
"label-statements.go": [
2016-11-01 01:22:10 +03:00
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
1,
1
2016-11-01 01:22:10 +03:00
],
"end": [
2016-12-02 00:03:52 +03:00
6,
1
2016-11-01 01:22:10 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
2016-11-01 01:22:10 +03:00
}
]
},
"errors": {}
},
"filePaths": [
2016-11-02 21:37:30 +03:00
"label-statements.go"
2016-11-01 01:22:10 +03:00
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/label-statements.go b/label-statements.go",
2017-01-12 02:28:58 +03:00
"index 7905807..e69de29 100644",
2016-11-11 00:19:53 +03:00
"--- a/label-statements.go",
"+++ b/label-statements.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-01 01:22:10 +03:00
"gitDir": "test/corpus/repos/go",
2017-01-12 02:28:58 +03:00
"shas": "296ef5c2694f2d9d95288a9370b750630ece66a8..ca65d40f5449d0d764090c6fc3b7a4a72934eb41"
2016-11-01 01:22:10 +03:00
}]