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/int-literals.json
2017-01-10 15:09:09 -05:00

395 lines
12 KiB
JSON

[{
"testCaseDescription": "go-int-literals-setup-test",
"expectedResult": {
"changes": {
"int-literals.go": [
{
"span": {
"insert": {
"start": [
1,
1
],
"end": [
6,
1
]
}
},
"summary": "Added the 'main' module"
}
]
},
"errors": {}
},
"filePaths": [
"int-literals.go"
],
"patch": [
"diff --git a/int-literals.go b/int-literals.go",
"index e69de29..7905807 100644",
"--- a/int-literals.go",
"+++ b/int-literals.go",
"@@ -0,0 +1,5 @@",
"+package main",
"+",
"+func main() {",
"+",
"+}"
],
"gitDir": "test/corpus/repos/go",
"shas": "2897fd958e259fc425d84e2aad1c7942d9c14844..6d384e455895f2bd47cc1fa83c858c9d57181a71"
}
,{
"testCaseDescription": "go-int-literals-insert-test",
"expectedResult": {
"changes": {
"int-literals.go": [
{
"span": {
"insert": {
"start": [
4,
1
],
"end": [
6,
2
]
}
},
"summary": "Added the 'a' var assignment in the main function of the 'main' module"
}
]
},
"errors": {}
},
"filePaths": [
"int-literals.go"
],
"patch": [
"diff --git a/int-literals.go b/int-literals.go",
"index 7905807..38d36ec 100644",
"--- a/int-literals.go",
"+++ b/int-literals.go",
"@@ -1,5 +1,7 @@",
" package main",
" ",
" func main() {",
"-",
"+const (",
"+a = 1, b = 2, c = 3",
"+)",
" }"
],
"gitDir": "test/corpus/repos/go",
"shas": "6d384e455895f2bd47cc1fa83c858c9d57181a71..3abdfbf1bb8dd315b6b9ac66bf14293b13fef790"
}
,{
"testCaseDescription": "go-int-literals-replacement-test",
"expectedResult": {
"changes": {
"int-literals.go": [
{
"span": {
"replace": [
{
"start": [
5,
5
],
"end": [
5,
6
]
},
{
"start": [
5,
5
],
"end": [
5,
6
]
}
]
},
"summary": "Replaced '1' with '4' in the a var assignment of the 'main' function"
},
{
"span": {
"replace": [
{
"start": [
5,
12
],
"end": [
5,
13
]
},
{
"start": [
5,
12
],
"end": [
5,
13
]
}
]
},
"summary": "Replaced '2' with '5' in the 5 var assignment of the 'main' function"
},
{
"span": {
"replace": [
{
"start": [
5,
19
],
"end": [
5,
20
]
},
{
"start": [
5,
19
],
"end": [
5,
20
]
}
]
},
"summary": "Replaced '3' with '6' in the 5 var assignment of the 'main' function"
}
]
},
"errors": {}
},
"filePaths": [
"int-literals.go"
],
"patch": [
"diff --git a/int-literals.go b/int-literals.go",
"index 38d36ec..4f07c13 100644",
"--- a/int-literals.go",
"+++ b/int-literals.go",
"@@ -2,6 +2,6 @@ package main",
" ",
" func main() {",
" const (",
"-a = 1, b = 2, c = 3",
"+a = 4, b = 5, c = 6",
" )",
" }"
],
"gitDir": "test/corpus/repos/go",
"shas": "3abdfbf1bb8dd315b6b9ac66bf14293b13fef790..85c9ca6bfa5cc18fc8cfc005dcb69297418456d5"
}
,{
"testCaseDescription": "go-int-literals-delete-replacement-test",
"expectedResult": {
"changes": {
"int-literals.go": [
{
"span": {
"replace": [
{
"start": [
5,
5
],
"end": [
5,
6
]
},
{
"start": [
5,
5
],
"end": [
5,
6
]
}
]
},
"summary": "Replaced '4' with '1' in the a var assignment of the 'main' function"
},
{
"span": {
"replace": [
{
"start": [
5,
12
],
"end": [
5,
13
]
},
{
"start": [
5,
12
],
"end": [
5,
13
]
}
]
},
"summary": "Replaced '5' with '2' in the 2 var assignment of the 'main' function"
},
{
"span": {
"replace": [
{
"start": [
5,
19
],
"end": [
5,
20
]
},
{
"start": [
5,
19
],
"end": [
5,
20
]
}
]
},
"summary": "Replaced '6' with '3' in the 2 var assignment of the 'main' function"
}
]
},
"errors": {}
},
"filePaths": [
"int-literals.go"
],
"patch": [
"diff --git a/int-literals.go b/int-literals.go",
"index 4f07c13..38d36ec 100644",
"--- a/int-literals.go",
"+++ b/int-literals.go",
"@@ -2,6 +2,6 @@ package main",
" ",
" func main() {",
" const (",
"-a = 4, b = 5, c = 6",
"+a = 1, b = 2, c = 3",
" )",
" }"
],
"gitDir": "test/corpus/repos/go",
"shas": "85c9ca6bfa5cc18fc8cfc005dcb69297418456d5..362510ea3aaa460b85f26824e79706c3b784142f"
}
,{
"testCaseDescription": "go-int-literals-delete-insert-test",
"expectedResult": {
"changes": {
"int-literals.go": [
{
"span": {
"delete": {
"start": [
4,
1
],
"end": [
6,
2
]
}
},
"summary": "Deleted the 'a' var assignment in the main function of the 'main' module"
}
]
},
"errors": {}
},
"filePaths": [
"int-literals.go"
],
"patch": [
"diff --git a/int-literals.go b/int-literals.go",
"index 38d36ec..7905807 100644",
"--- a/int-literals.go",
"+++ b/int-literals.go",
"@@ -1,7 +1,5 @@",
" package main",
" ",
" func main() {",
"-const (",
"-a = 1, b = 2, c = 3",
"-)",
"+",
" }"
],
"gitDir": "test/corpus/repos/go",
"shas": "362510ea3aaa460b85f26824e79706c3b784142f..cea9e4a98881e41a7701411fd485547b14df5a52"
}
,{
"testCaseDescription": "go-int-literals-teardown-test",
"expectedResult": {
"changes": {
"int-literals.go": [
{
"span": {
"delete": {
"start": [
1,
1
],
"end": [
6,
1
]
}
},
"summary": "Deleted the 'main' module"
}
]
},
"errors": {}
},
"filePaths": [
"int-literals.go"
],
"patch": [
"diff --git a/int-literals.go b/int-literals.go",
"index 7905807..e69de29 100644",
"--- a/int-literals.go",
"+++ b/int-literals.go",
"@@ -1,5 +0,0 @@",
"-package main",
"-",
"-func main() {",
"-",
"-}"
],
"gitDir": "test/corpus/repos/go",
"shas": "cea9e4a98881e41a7701411fd485547b14df5a52..bc59d7bf7c2d2e0b67b4106f2d8ac97e82a8d59c"
}]