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

519 lines
16 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": [
1,
13
2016-11-11 00:19:53 +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 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",
2017-01-17 23:26:07 +03:00
"index e69de29b..79058077 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",
2017-02-07 19:37:47 +03:00
"shas": "844563260fa09b99d4cf94ec2ba5a65d9a5e6ded..7f05d434eeb7d4e475e8a5fefb8921bb958cc60d"
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
]
}
},
"summary": "Added the 'a()' if statement in the main function"
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
]
}
},
"summary": "Added the 'a := b()' if statement in the main function"
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
]
}
},
"summary": "Added the 'a()' if statement in 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",
2017-01-17 23:26:07 +03:00
"index 79058077..76a6f335 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",
2017-02-07 19:37:47 +03:00
"shas": "7f05d434eeb7d4e475e8a5fefb8921bb958cc60d..045dae9fcac53782ce8bc04cd7d8b97eec6c13ca"
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
]
}
]
},
"summary": "Replaced the 'a' identifier with the 'y' identifier in the 'y := b()' if statement 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",
2017-01-17 23:26:07 +03:00
"index 76a6f335..39dfc0da 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",
2017-02-07 19:37:47 +03:00
"shas": "045dae9fcac53782ce8bc04cd7d8b97eec6c13ca..868fa819f5e273f493e8292b74593b773aa86193"
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
]
}
]
},
"summary": "Replaced the 'y' identifier with the 'a' identifier in the 'a := b()' if statement 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",
2017-01-17 23:26:07 +03:00
"index 39dfc0da..76a6f335 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",
2017-02-07 19:37:47 +03:00
"shas": "868fa819f5e273f493e8292b74593b773aa86193..53b5caeb25eac5493b68833e1139e280166f49ac"
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
]
}
},
"summary": "Deleted the 'a()' if statement in the main function"
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
]
}
},
"summary": "Deleted the 'a := b()' if statement in the main function"
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
]
}
},
"summary": "Deleted the 'a()' if statement in 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",
2017-01-17 23:26:07 +03:00
"index 76a6f335..79058077 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",
2017-02-07 19:37:47 +03:00
"shas": "53b5caeb25eac5493b68833e1139e280166f49ac..0e1909c5e43a050032b2698a2f3e00d8598de19b"
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": [
1,
13
2016-11-11 00:19:53 +03:00
]
}
2016-11-02 21:37:30 +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 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",
2017-01-17 23:26:07 +03:00
"index 79058077..e69de29b 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",
2017-02-07 19:37:47 +03:00
"shas": "0e1909c5e43a050032b2698a2f3e00d8598de19b..1f7119ceb53f8159ac2330bdb3c78e76a19a5ed0"
2016-11-02 21:37:30 +03:00
}]