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/if-statements.json

489 lines
15 KiB
JSON
Raw Normal View History

2016-11-02 21:37:30 +03:00
[{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-if-statements-setup-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"if-statements.go": [
{
"span": {
2016-11-11 00:19:53 +03:00
"insert": {
"start": [
1,
1
],
"end": [
6,
1
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'main' module"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"if-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/if-statements.go b/if-statements.go",
2016-12-02 00:03:52 +03:00
"index e69de29..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/if-statements.go",
"+++ b/if-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-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:07:40 +03:00
"shas": "87ee1bdc92f2b20dab9d70248dbc977d19b31eba..8829fb032748f78a4e1d87dc6dbf22388ef859fa"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-if-statements-insert-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"if-statements.go": [
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-03 01:09:32 +03:00
2
2016-11-02 21:37:30 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'a()' if statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"insert": {
"start": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
9,
2016-11-03 01:09:32 +03:00
2
2016-11-02 21:37:30 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'a := b(); c' if statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"insert": {
"start": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
14,
2016-11-03 01:09:32 +03:00
2
2016-11-02 21:37:30 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Added the 'a()' if statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"if-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/if-statements.go b/if-statements.go",
2016-12-02 00:03:52 +03:00
"index 7905807..76a6f33 100644",
2016-11-11 00:19:53 +03:00
"--- a/if-statements.go",
"+++ b/if-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,5 +1,15 @@",
" package main",
" ",
" func main() {",
"-",
2016-11-11 00:19:53 +03:00
"+if a() {",
"+b()",
"+}",
"+if a := b(); c {",
"+d()",
"+}",
"+if a() {",
"+b()",
"+} else {",
"+c()",
"+}",
" }"
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:07:40 +03:00
"shas": "8829fb032748f78a4e1d87dc6dbf22388ef859fa..32096032c85e84d014cd7140d18cf22aeb1a0703"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-if-statements-replacement-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"if-statements.go": [
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'a' identifier with the 'x' identifier in the x() function call of the 'main' function"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'a' identifier with the 'y' identifier in the y variable of the 'main' function"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'a' identifier with the 'z' identifier in the z() function call of the 'main' function"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"if-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/if-statements.go b/if-statements.go",
2016-12-02 00:03:52 +03:00
"index 76a6f33..39dfc0d 100644",
2016-11-11 00:19:53 +03:00
"--- a/if-statements.go",
"+++ b/if-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,13 +1,13 @@",
" package main",
" ",
" func main() {",
"-if a() {",
"+if x() {",
2016-11-11 00:19:53 +03:00
" b()",
" }",
2016-12-02 00:03:52 +03:00
"-if a := b(); c {",
"+if y := b(); c {",
2016-11-11 00:19:53 +03:00
" d()",
" }",
2016-12-02 00:03:52 +03:00
"-if a() {",
"+if z() {",
2016-11-11 00:19:53 +03:00
" b()",
" } else {",
" c()"
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:07:40 +03:00
"shas": "32096032c85e84d014cd7140d18cf22aeb1a0703..5e84431b5023237d66f3b6e2c722e893386d43de"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-if-statements-delete-replacement-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"if-statements.go": [
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
4,
2016-11-02 21:37:30 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'x' identifier with the 'a' identifier in the a() function call of the 'main' function"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
7,
2016-11-02 21:37:30 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'y' identifier with the 'a' identifier in the a variable of the 'main' function"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"replace": [
{
"start": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
5
]
},
{
"start": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
4
],
"end": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
5
]
}
]
},
2016-12-02 00:03:52 +03:00
"summary": "Replaced the 'z' identifier with the 'a' identifier in the a() function call of the 'main' function"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"if-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/if-statements.go b/if-statements.go",
2016-12-02 00:03:52 +03:00
"index 39dfc0d..76a6f33 100644",
2016-11-11 00:19:53 +03:00
"--- a/if-statements.go",
"+++ b/if-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,13 +1,13 @@",
" package main",
" ",
" func main() {",
"-if x() {",
"+if a() {",
2016-11-11 00:19:53 +03:00
" b()",
" }",
2016-12-02 00:03:52 +03:00
"-if y := b(); c {",
"+if a := b(); c {",
2016-11-11 00:19:53 +03:00
" d()",
" }",
2016-12-02 00:03:52 +03:00
"-if z() {",
"+if a() {",
2016-11-11 00:19:53 +03:00
" b()",
" } else {",
" c()"
],
2016-11-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:07:40 +03:00
"shas": "5e84431b5023237d66f3b6e2c722e893386d43de..db230ff32ae987959f04b41418763bed55a41afc"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-if-statements-delete-insert-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"if-statements.go": [
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
4,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
6,
2016-11-03 01:09:32 +03:00
2
2016-11-02 21:37:30 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'a()' if statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"delete": {
"start": [
2016-11-11 00:19:53 +03:00
7,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-12-02 00:03:52 +03:00
9,
2016-11-03 01:09:32 +03:00
2
2016-11-02 21:37:30 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'a := b(); c' if statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
},
{
"span": {
"delete": {
"start": [
2016-12-02 00:03:52 +03:00
10,
2016-11-02 21:37:30 +03:00
1
],
"end": [
2016-11-11 00:19:53 +03:00
14,
2016-11-03 01:09:32 +03:00
2
2016-11-02 21:37:30 +03:00
]
}
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'a()' if statement in the main function of the 'main' module"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"if-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/if-statements.go b/if-statements.go",
2016-12-02 00:03:52 +03:00
"index 76a6f33..7905807 100644",
2016-11-11 00:19:53 +03:00
"--- a/if-statements.go",
"+++ b/if-statements.go",
2016-12-02 00:03:52 +03:00
"@@ -1,15 +1,5 @@",
" package main",
" ",
" func main() {",
2016-11-11 00:19:53 +03:00
"-if a() {",
"-b()",
"-}",
"-if a := b(); c {",
"-d()",
"-}",
"-if a() {",
"-b()",
"-} else {",
"-c()",
"-}",
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-02 00:07:40 +03:00
"shas": "db230ff32ae987959f04b41418763bed55a41afc..47285257b1a6039703981946cc2ccb5d7c14dbef"
2016-11-02 21:37:30 +03:00
}
,{
2016-12-02 00:03:52 +03:00
"testCaseDescription": "go-if-statements-teardown-test",
2016-11-02 21:37:30 +03:00
"expectedResult": {
"changes": {
"if-statements.go": [
{
"span": {
2016-11-11 00:19:53 +03:00
"delete": {
"start": [
1,
1
],
"end": [
6,
1
]
}
2016-11-02 21:37:30 +03:00
},
2016-12-02 00:03:52 +03:00
"summary": "Deleted the 'main' module"
2016-11-02 21:37:30 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"if-statements.go"
],
2016-11-11 00:19:53 +03:00
"patch": [
"diff --git a/if-statements.go b/if-statements.go",
2016-12-02 00:03:52 +03:00
"index 7905807..e69de29 100644",
2016-11-11 00:19:53 +03:00
"--- a/if-statements.go",
"+++ b/if-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-02 21:37:30 +03:00
"gitDir": "test/corpus/repos/go",
2016-12-02 00:07:40 +03:00
"shas": "47285257b1a6039703981946cc2ccb5d7c14dbef..6983e30f7b6ae4dc332ee578f84aeae96b7c7682"
2016-11-02 21:37:30 +03:00
}]