1
1
mirror of https://github.com/github/semantic.git synced 2024-12-24 07:25:44 +03:00
semantic/test/corpus/diff-summaries/ruby/begin-block.json

411 lines
12 KiB
JSON
Raw Normal View History

2016-12-13 00:41:55 +03:00
[{
"testCaseDescription": "ruby-begin-block-insert-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"insert": {
"start": [
2016-12-13 02:26:26 +03:00
1,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
3,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Added a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index e69de29..689ee83 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -0,0 +1,3 @@",
"+BEGIN {",
"+ foo",
"+}"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "03a751d043f1bc44ab9eae085bfde59af2495a68..f49a537446aae0dbbabb805cb2837324170ccabe"
2016-12-13 00:41:55 +03:00
}
,{
"testCaseDescription": "ruby-begin-block-replacement-insert-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"insert": {
"start": [
1,
1
],
"end": [
1,
4
]
}
},
"summary": "Added the 'foo' identifier"
},
{
"span": {
"insert": {
"start": [
2016-12-13 02:26:26 +03:00
2,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
4,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Added a BEGIN block"
2016-12-13 00:41:55 +03:00
},
{
"span": {
"insert": {
"start": [
2016-12-13 02:26:26 +03:00
5,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
7,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Added a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index 689ee83..6d35684 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -1,3 +1,10 @@",
"+foo",
"+BEGIN {",
"+ bar",
"+}",
"+BEGIN {",
"+ foo",
"+}",
" BEGIN {",
" foo",
" }"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "f49a537446aae0dbbabb805cb2837324170ccabe..cc282f13854c118436fbaddd0edf810bb34089ff"
2016-12-13 00:41:55 +03:00
}
,{
"testCaseDescription": "ruby-begin-block-delete-insert-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"insert": {
"start": [
2016-12-13 02:26:26 +03:00
1,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
3,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Added a BEGIN block"
2016-12-13 00:41:55 +03:00
},
{
"span": {
"delete": {
"start": [
1,
1
],
"end": [
1,
4
]
}
},
"summary": "Deleted the 'foo' identifier"
},
{
"span": {
"delete": {
"start": [
2016-12-13 02:26:26 +03:00
2,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
4,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Deleted a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index 6d35684..59f3ea8 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -1,6 +1,5 @@",
"-foo",
" BEGIN {",
"- bar",
"+ foo",
" }",
" BEGIN {",
" foo"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "cc282f13854c118436fbaddd0edf810bb34089ff..127068078b1f33278c78727939ae44ea3bb56669"
2016-12-13 00:41:55 +03:00
}
,{
"testCaseDescription": "ruby-begin-block-replacement-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"insert": {
"start": [
1,
1
],
"end": [
1,
4
]
}
},
"summary": "Added the 'foo' identifier"
},
{
"span": {
"replace": [
{
"start": [
2,
2
],
"end": [
2,
5
]
},
{
"start": [
3,
2
],
"end": [
3,
5
]
}
]
},
2016-12-13 02:26:26 +03:00
"summary": "Replaced the 'foo' identifier with the 'bar' identifier in a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index 59f3ea8..6d35684 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -1,5 +1,6 @@",
"+foo",
" BEGIN {",
"- foo",
"+ bar",
" }",
" BEGIN {",
" foo"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "127068078b1f33278c78727939ae44ea3bb56669..c383974184ea4cdde2f9267d5f3e349d1d9a15ea"
2016-12-13 00:41:55 +03:00
}
,{
"testCaseDescription": "ruby-begin-block-delete-replacement-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"delete": {
"start": [
2016-12-13 02:26:26 +03:00
8,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
10,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Deleted a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index 6d35684..422d4eb 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -1,10 +1,7 @@",
"-foo",
"-BEGIN {",
"- bar",
"-}",
" BEGIN {",
" foo",
" }",
"+foo",
" BEGIN {",
"- foo",
"+ bar",
" }"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "c383974184ea4cdde2f9267d5f3e349d1d9a15ea..0c80ecb1555e53e9840e415d79da2364c203a137"
2016-12-13 00:41:55 +03:00
}
,{
"testCaseDescription": "ruby-begin-block-delete-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"delete": {
"start": [
2016-12-13 02:26:26 +03:00
1,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
3,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Deleted a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index 422d4eb..a936ce1 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -1,6 +1,3 @@",
"-BEGIN {",
"- foo",
"-}",
" foo",
" BEGIN {",
" bar"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "0c80ecb1555e53e9840e415d79da2364c203a137..105174fafe27003c0e1d9ce859589eed676626cd"
2016-12-13 00:41:55 +03:00
}
,{
"testCaseDescription": "ruby-begin-block-delete-rest-test",
"expectedResult": {
"changes": {
"begin-block.rb": [
{
"span": {
"delete": {
"start": [
1,
1
],
"end": [
1,
4
]
}
},
"summary": "Deleted the 'foo' identifier"
},
{
"span": {
"delete": {
"start": [
2016-12-13 02:26:26 +03:00
2,
1
2016-12-13 00:41:55 +03:00
],
"end": [
2016-12-13 02:26:26 +03:00
4,
2
2016-12-13 00:41:55 +03:00
]
}
},
2016-12-13 02:26:26 +03:00
"summary": "Deleted a BEGIN block"
2016-12-13 00:41:55 +03:00
}
]
},
"errors": {}
},
"filePaths": [
"begin-block.rb"
],
"patch": [
"diff --git a/begin-block.rb b/begin-block.rb",
"index a936ce1..e69de29 100644",
"--- a/begin-block.rb",
"+++ b/begin-block.rb",
"@@ -1,4 +0,0 @@",
"-foo",
"-BEGIN {",
"- bar",
"-}"
],
"gitDir": "test/corpus/repos/ruby",
2017-02-06 18:44:04 +03:00
"shas": "105174fafe27003c0e1d9ce859589eed676626cd..5de93fcdb1d807e7d537ecd5843313d1d3acf001"
2016-12-13 00:41:55 +03:00
}]