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
2017-02-07 11:37:47 -05:00

721 lines
23 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": "b33ba59ecc38b2543059f17e99013c5f619a0295..6562a24e5a10c2dcddf50a6e030d21c62309eed4"
}
,{
"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"
},
{
"span": {
"insert": {
"start": [
8,
3
],
"end": [
8,
10
]
}
},
"summary": "Added the 'f' var assignment"
}
]
},
"errors": {}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index c9ecbf5e..e97de4c1 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,2 +1,9 @@",
" package main",
"-",
"+const (",
"+ a = 'δ'",
"+ b = '⌘'",
"+ c = '⌘'",
"+ d = '⌘'",
"+ e = '⌘'",
"+ f = '⌘'",
"+)"
],
"gitDir": "test/corpus/repos/go",
"shas": "6562a24e5a10c2dcddf50a6e030d21c62309eed4..4170bf9052b2ada9be6045f32867d440c3bc1452"
}
,{
"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": {
"replace": [
{
"start": [
8,
7
],
"end": [
8,
10
]
},
{
"start": [
8,
7
],
"end": [
8,
10
]
}
]
},
"summary": "Replaced the ''⌘'' rune literal with the ''©'' rune literal in the f var assignment"
}
]
},
"errors": {}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index e97de4c1..346d5d96 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 = '©'",
" )"
],
"gitDir": "test/corpus/repos/go",
"shas": "4170bf9052b2ada9be6045f32867d440c3bc1452..d1fff006ee9383445d9d45ca3790f2c62d415295"
}
,{
"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": {
"replace": [
{
"start": [
8,
7
],
"end": [
8,
10
]
},
{
"start": [
8,
7
],
"end": [
8,
10
]
}
]
},
"summary": "Replaced the ''©'' rune literal with the ''⌘'' rune literal in the f var assignment"
}
]
},
"errors": {}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index 346d5d96..e97de4c1 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 = '⌘'",
" )"
],
"gitDir": "test/corpus/repos/go",
"shas": "d1fff006ee9383445d9d45ca3790f2c62d415295..3317c28671471c9a8a940ca59f1a929b77da6851"
}
,{
"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"
},
{
"span": {
"delete": {
"start": [
8,
3
],
"end": [
8,
10
]
}
},
"summary": "Deleted the 'f' var assignment"
}
]
},
"errors": {}
},
"filePaths": [
"rune-literals.go"
],
"patch": [
"diff --git a/rune-literals.go b/rune-literals.go",
"index e97de4c1..c9ecbf5e 100644",
"--- a/rune-literals.go",
"+++ b/rune-literals.go",
"@@ -1,9 +1,2 @@",
" package main",
"-const (",
"- a = 'δ'",
"- b = '⌘'",
"- c = '⌘'",
"- d = '⌘'",
"- e = '⌘'",
"- f = '⌘'",
"-)",
"+"
],
"gitDir": "test/corpus/repos/go",
"shas": "3317c28671471c9a8a940ca59f1a929b77da6851..66e9950fcf1ad093302ce35b8541e08c4c9ca808"
}
,{
"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": "66e9950fcf1ad093302ce35b8541e08c4c9ca808..d16e448af6bd6f785de25d685b7bceabce571049"
}]