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/rune-literals.json

739 lines
24 KiB
JSON

[{
"testCaseDescription": "go-rune-literals-setup-test",
"expectedResult": {
"changes": {
"rune-literals.go": [
{
"span": {
"insert": {
"start": [
1,
1
],
"end": [
1,
13
]
}
},
"summary": "Added the 'main' module"
}
]
},
"errors": {}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index e69de29b..c9ecbf5e 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -0,0 +1,2 @@",
"+package main",
"+"
],
"gitDir": "test/corpus/repos/go",
"shas": "76fb47ec15269af90c3ffa4a05680a53adec58dc..333e38dc67da599f15ebd65212f908973ab9b086"
}
,{
"testCaseDescription": "go-rune-literals-insert-test",
"expectedResult": {
"changes": {
"rune-literals.go": [
{
"span": {
"insert": {
"start": [
3,
3
],
"end": [
3,
10
]
}
},
"summary": "Added the 'a' var assignment"
},
{
"span": {
"insert": {
"start": [
4,
3
],
"end": [
4,
10
]
}
},
"summary": "Added the 'b' var assignment"
},
{
"span": {
"insert": {
"start": [
5,
3
],
"end": [
5,
10
]
}
},
"summary": "Added the 'c' var assignment"
},
{
"span": {
"insert": {
"start": [
6,
3
],
"end": [
6,
10
]
}
},
"summary": "Added the 'd' var assignment"
},
{
"span": {
"insert": {
"start": [
7,
3
],
"end": [
7,
10
]
}
},
"summary": "Added the 'e' var assignment"
}
]
},
"errors": {
"rune-literals.go": [
{
"span": {
"insert": {
"start": [
8,
3
],
"end": [
9,
1
]
}
},
"summary": "Added 'f = '⌘jjjj'\n' at line 8, column 3 - line 9, column 1"
}
]
}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index c9ecbf5e..7d2b6610 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,2 +1,9 @@",
" package main",
"-",
"+const (",
"+ a = 'δ'",
"+ b = '⌘'",
"+ c = '⌘'",
"+ d = '⌘'",
"+ e = '⌘'",
"+ f = '⌘jjjj'",
"+)"
],
"gitDir": "test/corpus/repos/go",
"shas": "333e38dc67da599f15ebd65212f908973ab9b086..22af46aaf7c592f5d013f744db9e36ff65c3c548"
}
,{
"testCaseDescription": "go-rune-literals-replacement-test",
"expectedResult": {
"changes": {
"rune-literals.go": [
{
"span": {
"replace": [
{
"start": [
3,
7
],
"end": [
3,
10
]
},
{
"start": [
3,
7
],
"end": [
3,
10
]
}
]
},
"summary": "Replaced the ''δ'' rune literal with the ''©'' rune literal in the a var assignment"
},
{
"span": {
"replace": [
{
"start": [
4,
7
],
"end": [
4,
10
]
},
{
"start": [
4,
7
],
"end": [
4,
10
]
}
]
},
"summary": "Replaced the ''⌘'' rune literal with the ''©'' rune literal in the b var assignment"
},
{
"span": {
"replace": [
{
"start": [
5,
7
],
"end": [
5,
10
]
},
{
"start": [
5,
7
],
"end": [
5,
10
]
}
]
},
"summary": "Replaced the ''⌘'' rune literal with the ''©'' rune literal in the c var assignment"
},
{
"span": {
"replace": [
{
"start": [
6,
7
],
"end": [
6,
10
]
},
{
"start": [
6,
7
],
"end": [
6,
10
]
}
]
},
"summary": "Replaced the ''⌘'' rune literal with the ''©'' rune literal in the d var assignment"
},
{
"span": {
"replace": [
{
"start": [
7,
7
],
"end": [
7,
10
]
},
{
"start": [
7,
7
],
"end": [
7,
10
]
}
]
},
"summary": "Replaced the ''⌘'' rune literal with the ''©'' rune literal in the e var assignment"
},
{
"span": {
"insert": {
"start": [
8,
3
],
"end": [
8,
10
]
}
},
"summary": "Added the 'f' var assignment"
}
]
},
"errors": {
"rune-literals.go": [
{
"span": {
"delete": {
"start": [
8,
3
],
"end": [
9,
1
]
}
},
"summary": "Deleted 'f = '⌘jjjj'\n' at line 8, column 3 - line 9, column 1"
}
]
}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index 7d2b6610..346d5d96 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,9 +1,9 @@",
" package main",
" const (",
"- a = 'δ'",
"- b = '⌘'",
"- c = '⌘'",
"- d = '⌘'",
"- e = '⌘'",
"- f = '⌘jjjj'",
"+ a = '©'",
"+ b = '©'",
"+ c = '©'",
"+ d = '©'",
"+ e = '©'",
"+ f = '©'",
" )"
],
"gitDir": "test/corpus/repos/go",
"shas": "22af46aaf7c592f5d013f744db9e36ff65c3c548..e83084ec23c8017a7202ffcdddfcbbbe099aaa33"
}
,{
"testCaseDescription": "go-rune-literals-delete-replacement-test",
"expectedResult": {
"changes": {
"rune-literals.go": [
{
"span": {
"replace": [
{
"start": [
3,
7
],
"end": [
3,
10
]
},
{
"start": [
3,
7
],
"end": [
3,
10
]
}
]
},
"summary": "Replaced the ''©'' rune literal with the ''δ'' rune literal in the a var assignment"
},
{
"span": {
"replace": [
{
"start": [
4,
7
],
"end": [
4,
10
]
},
{
"start": [
4,
7
],
"end": [
4,
10
]
}
]
},
"summary": "Replaced the ''©'' rune literal with the ''⌘'' rune literal in the b var assignment"
},
{
"span": {
"replace": [
{
"start": [
5,
7
],
"end": [
5,
10
]
},
{
"start": [
5,
7
],
"end": [
5,
10
]
}
]
},
"summary": "Replaced the ''©'' rune literal with the ''⌘'' rune literal in the c var assignment"
},
{
"span": {
"replace": [
{
"start": [
6,
7
],
"end": [
6,
10
]
},
{
"start": [
6,
7
],
"end": [
6,
10
]
}
]
},
"summary": "Replaced the ''©'' rune literal with the ''⌘'' rune literal in the d var assignment"
},
{
"span": {
"replace": [
{
"start": [
7,
7
],
"end": [
7,
10
]
},
{
"start": [
7,
7
],
"end": [
7,
10
]
}
]
},
"summary": "Replaced the ''©'' rune literal with the ''⌘'' rune literal in the e var assignment"
},
{
"span": {
"delete": {
"start": [
8,
3
],
"end": [
8,
10
]
}
},
"summary": "Deleted the 'f' var assignment"
}
]
},
"errors": {
"rune-literals.go": [
{
"span": {
"insert": {
"start": [
8,
3
],
"end": [
9,
1
]
}
},
"summary": "Added 'f = '⌘jjjj'\n' at line 8, column 3 - line 9, column 1"
}
]
}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index 346d5d96..7d2b6610 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,9 +1,9 @@",
" package main",
" const (",
"- a = '©'",
"- b = '©'",
"- c = '©'",
"- d = '©'",
"- e = '©'",
"- f = '©'",
"+ a = 'δ'",
"+ b = '⌘'",
"+ c = '⌘'",
"+ d = '⌘'",
"+ e = '⌘'",
"+ f = '⌘jjjj'",
" )"
],
"gitDir": "test/corpus/repos/go",
"shas": "e83084ec23c8017a7202ffcdddfcbbbe099aaa33..f139d1a2121f827de1d8013024d395f24f7abbf4"
}
,{
"testCaseDescription": "go-rune-literals-delete-insert-test",
"expectedResult": {
"changes": {
"rune-literals.go": [
{
"span": {
"delete": {
"start": [
3,
3
],
"end": [
3,
10
]
}
},
"summary": "Deleted the 'a' var assignment"
},
{
"span": {
"delete": {
"start": [
4,
3
],
"end": [
4,
10
]
}
},
"summary": "Deleted the 'b' var assignment"
},
{
"span": {
"delete": {
"start": [
5,
3
],
"end": [
5,
10
]
}
},
"summary": "Deleted the 'c' var assignment"
},
{
"span": {
"delete": {
"start": [
6,
3
],
"end": [
6,
10
]
}
},
"summary": "Deleted the 'd' var assignment"
},
{
"span": {
"delete": {
"start": [
7,
3
],
"end": [
7,
10
]
}
},
"summary": "Deleted the 'e' var assignment"
}
]
},
"errors": {
"rune-literals.go": [
{
"span": {
"delete": {
"start": [
8,
3
],
"end": [
9,
1
]
}
},
"summary": "Deleted 'f = '⌘jjjj'\n' at line 8, column 3 - line 9, column 1"
}
]
}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index 7d2b6610..c9ecbf5e 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,9 +1,2 @@",
" package main",
"-const (",
"- a = 'δ'",
"- b = '⌘'",
"- c = '⌘'",
"- d = '⌘'",
"- e = '⌘'",
"- f = '⌘jjjj'",
"-)",
"+"
],
"gitDir": "test/corpus/repos/go",
"shas": "f139d1a2121f827de1d8013024d395f24f7abbf4..818b5937150942028f871efb83d79702022bf8d5"
}
,{
"testCaseDescription": "go-rune-literals-teardown-test",
"expectedResult": {
"changes": {
"rune-literals.go": [
{
"span": {
"delete": {
"start": [
1,
1
],
"end": [
1,
13
]
}
},
"summary": "Deleted the 'main' module"
}
]
},
"errors": {}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index c9ecbf5e..e69de29b 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,2 +0,0 @@",
"-package main",
"-"
],
"gitDir": "test/corpus/repos/go",
"shas": "818b5937150942028f871efb83d79702022bf8d5..f619a88d48fbbc227d175c092a19ea0dbfdeb56f"
}]