[{ "testCaseDescription": "go-if-statements-setup-test", "expectedResult": { "changes": { "if-statements.go": [ { "span": { "insert": { "start": [ 1, 1 ], "end": [ 6, 1 ] } }, "summary": "Added the 'main' module" } ] }, "errors": {} }, "filePaths": [ "if-statements.go" ], "patch": [ "diff --git a/if-statements.go b/if-statements.go", "index e69de29..7905807 100644", "--- a/if-statements.go", "+++ b/if-statements.go", "@@ -0,0 +1,5 @@", "+package main", "+", "+func main() {", "+", "+}" ], "gitDir": "test/corpus/repos/go", "shas": "87ee1bdc92f2b20dab9d70248dbc977d19b31eba..8829fb032748f78a4e1d87dc6dbf22388ef859fa" } ,{ "testCaseDescription": "go-if-statements-insert-test", "expectedResult": { "changes": { "if-statements.go": [ { "span": { "insert": { "start": [ 4, 1 ], "end": [ 6, 2 ] } }, "summary": "Added the 'a()' if statement in the main function of the 'main' module" }, { "span": { "insert": { "start": [ 7, 1 ], "end": [ 9, 2 ] } }, "summary": "Added the 'a := b(); c' if statement in the main function of the 'main' module" }, { "span": { "insert": { "start": [ 10, 1 ], "end": [ 14, 2 ] } }, "summary": "Added the 'a()' if statement in the main function of the 'main' module" } ] }, "errors": {} }, "filePaths": [ "if-statements.go" ], "patch": [ "diff --git a/if-statements.go b/if-statements.go", "index 7905807..76a6f33 100644", "--- a/if-statements.go", "+++ b/if-statements.go", "@@ -1,5 +1,15 @@", " package main", " ", " func main() {", "-", "+if a() {", "+b()", "+}", "+if a := b(); c {", "+d()", "+}", "+if a() {", "+b()", "+} else {", "+c()", "+}", " }" ], "gitDir": "test/corpus/repos/go", "shas": "8829fb032748f78a4e1d87dc6dbf22388ef859fa..32096032c85e84d014cd7140d18cf22aeb1a0703" } ,{ "testCaseDescription": "go-if-statements-replacement-test", "expectedResult": { "changes": { "if-statements.go": [ { "span": { "replace": [ { "start": [ 4, 4 ], "end": [ 4, 5 ] }, { "start": [ 4, 4 ], "end": [ 4, 5 ] } ] }, "summary": "Replaced the 'a' identifier with the 'x' identifier in the x() function call of the 'main' function" }, { "span": { "replace": [ { "start": [ 7, 4 ], "end": [ 7, 5 ] }, { "start": [ 7, 4 ], "end": [ 7, 5 ] } ] }, "summary": "Replaced the 'a' identifier with the 'y' identifier in the y variable of the 'main' function" }, { "span": { "replace": [ { "start": [ 10, 4 ], "end": [ 10, 5 ] }, { "start": [ 10, 4 ], "end": [ 10, 5 ] } ] }, "summary": "Replaced the 'a' identifier with the 'z' identifier in the z() function call of the 'main' function" } ] }, "errors": {} }, "filePaths": [ "if-statements.go" ], "patch": [ "diff --git a/if-statements.go b/if-statements.go", "index 76a6f33..39dfc0d 100644", "--- a/if-statements.go", "+++ b/if-statements.go", "@@ -1,13 +1,13 @@", " package main", " ", " func main() {", "-if a() {", "+if x() {", " b()", " }", "-if a := b(); c {", "+if y := b(); c {", " d()", " }", "-if a() {", "+if z() {", " b()", " } else {", " c()" ], "gitDir": "test/corpus/repos/go", "shas": "32096032c85e84d014cd7140d18cf22aeb1a0703..5e84431b5023237d66f3b6e2c722e893386d43de" } ,{ "testCaseDescription": "go-if-statements-delete-replacement-test", "expectedResult": { "changes": { "if-statements.go": [ { "span": { "replace": [ { "start": [ 4, 4 ], "end": [ 4, 5 ] }, { "start": [ 4, 4 ], "end": [ 4, 5 ] } ] }, "summary": "Replaced the 'x' identifier with the 'a' identifier in the a() function call of the 'main' function" }, { "span": { "replace": [ { "start": [ 7, 4 ], "end": [ 7, 5 ] }, { "start": [ 7, 4 ], "end": [ 7, 5 ] } ] }, "summary": "Replaced the 'y' identifier with the 'a' identifier in the a variable of the 'main' function" }, { "span": { "replace": [ { "start": [ 10, 4 ], "end": [ 10, 5 ] }, { "start": [ 10, 4 ], "end": [ 10, 5 ] } ] }, "summary": "Replaced the 'z' identifier with the 'a' identifier in the a() function call of the 'main' function" } ] }, "errors": {} }, "filePaths": [ "if-statements.go" ], "patch": [ "diff --git a/if-statements.go b/if-statements.go", "index 39dfc0d..76a6f33 100644", "--- a/if-statements.go", "+++ b/if-statements.go", "@@ -1,13 +1,13 @@", " package main", " ", " func main() {", "-if x() {", "+if a() {", " b()", " }", "-if y := b(); c {", "+if a := b(); c {", " d()", " }", "-if z() {", "+if a() {", " b()", " } else {", " c()" ], "gitDir": "test/corpus/repos/go", "shas": "5e84431b5023237d66f3b6e2c722e893386d43de..db230ff32ae987959f04b41418763bed55a41afc" } ,{ "testCaseDescription": "go-if-statements-delete-insert-test", "expectedResult": { "changes": { "if-statements.go": [ { "span": { "delete": { "start": [ 4, 1 ], "end": [ 6, 2 ] } }, "summary": "Deleted the 'a()' if statement in the main function of the 'main' module" }, { "span": { "delete": { "start": [ 7, 1 ], "end": [ 9, 2 ] } }, "summary": "Deleted the 'a := b(); c' if statement in the main function of the 'main' module" }, { "span": { "delete": { "start": [ 10, 1 ], "end": [ 14, 2 ] } }, "summary": "Deleted the 'a()' if statement in the main function of the 'main' module" } ] }, "errors": {} }, "filePaths": [ "if-statements.go" ], "patch": [ "diff --git a/if-statements.go b/if-statements.go", "index 76a6f33..7905807 100644", "--- a/if-statements.go", "+++ b/if-statements.go", "@@ -1,15 +1,5 @@", " package main", " ", " func main() {", "-if a() {", "-b()", "-}", "-if a := b(); c {", "-d()", "-}", "-if a() {", "-b()", "-} else {", "-c()", "-}", "+", " }" ], "gitDir": "test/corpus/repos/go", "shas": "db230ff32ae987959f04b41418763bed55a41afc..47285257b1a6039703981946cc2ccb5d7c14dbef" } ,{ "testCaseDescription": "go-if-statements-teardown-test", "expectedResult": { "changes": { "if-statements.go": [ { "span": { "delete": { "start": [ 1, 1 ], "end": [ 6, 1 ] } }, "summary": "Deleted the 'main' module" } ] }, "errors": {} }, "filePaths": [ "if-statements.go" ], "patch": [ "diff --git a/if-statements.go b/if-statements.go", "index 7905807..e69de29 100644", "--- a/if-statements.go", "+++ b/if-statements.go", "@@ -1,5 +0,0 @@", "-package main", "-", "-func main() {", "-", "-}" ], "gitDir": "test/corpus/repos/go", "shas": "47285257b1a6039703981946cc2ccb5d7c14dbef..6983e30f7b6ae4dc332ee578f84aeae96b7c7682" }]