-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add tests for tree-sitter backends.
- Loading branch information
Showing
10 changed files
with
252 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2022 Jean-Rémy Falleri <[email protected]> | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
|
@@ -32,11 +32,11 @@ public class GoTreeSitterNgTreeGeneratorTest { | |
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("package main\n" + | ||
"import \"fmt\"\n" + | ||
"func main() {\n" + | ||
" fmt.Println(\"hello world\")\n" + | ||
"}"); | ||
TreeContext src = generator.generateFrom().string("package main\n" | ||
+ "import \"fmt\"\n" | ||
+ "func main() {\n" | ||
+ " fmt.Println(\"hello world\")\n" | ||
+ "}"); | ||
assertEquals(20, src.getRoot().getMetrics().size); | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...java/com/github/gumtreediff/gen/treesitterng/JavaScriptTreeSitterNgTreeGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* This file is part of GumTree. | ||
* | ||
* GumTree is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* GumTree is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
import com.github.gumtreediff.tree.TreeContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class JavaScriptTreeSitterNgTreeGeneratorTest { | ||
private final JavaScriptTreeSitterNgTreeGenerator generator = new JavaScriptTreeSitterNgTreeGenerator(); | ||
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("alert('Hello World!');"); | ||
assertEquals(12, src.getRoot().getMetrics().size); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
...test/java/com/github/gumtreediff/gen/treesitterng/OcamlTreeSitterNgTreeGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* This file is part of GumTree. | ||
* | ||
* GumTree is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* GumTree is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
import com.github.gumtreediff.tree.TreeContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class OcamlTreeSitterNgTreeGeneratorTest { | ||
private final OcamlTreeSitterNgTreeGenerator generator = new OcamlTreeSitterNgTreeGenerator(); | ||
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("let () = print_endline \"Hello, World!\""); | ||
assertEquals(12, src.getRoot().getMetrics().size); | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
...c/test/java/com/github/gumtreediff/gen/treesitterng/PhpTreeSitterNgTreeGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* This file is part of GumTree. | ||
* | ||
* GumTree is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* GumTree is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
import com.github.gumtreediff.tree.TreeContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class PhpTreeSitterNgTreeGeneratorTest { | ||
private final PhpTreeSitterNgTreeGenerator generator = new PhpTreeSitterNgTreeGenerator(); | ||
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("<?php\n" | ||
+ "echo \"Hello World!\";\n" | ||
+ "?>"); | ||
assertEquals(11, src.getRoot().getMetrics().size); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
.../test/java/com/github/gumtreediff/gen/treesitterng/RubyTreeSitterNgTreeGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* This file is part of GumTree. | ||
* | ||
* GumTree is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* GumTree is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
import com.github.gumtreediff.tree.TreeContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class RubyTreeSitterNgTreeGeneratorTest { | ||
private final RubyTreeSitterNgTreeGenerator generator = new RubyTreeSitterNgTreeGenerator(); | ||
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("puts \"Hello World\""); | ||
assertEquals(8, src.getRoot().getMetrics().size); | ||
} | ||
} |
38 changes: 38 additions & 0 deletions
38
.../test/java/com/github/gumtreediff/gen/treesitterng/RustTreeSitterNgTreeGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
/* | ||
* This file is part of GumTree. | ||
* | ||
* GumTree is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* GumTree is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
import com.github.gumtreediff.tree.TreeContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class RustTreeSitterNgTreeGeneratorTest { | ||
private final RustTreeSitterNgTreeGenerator generator = new RustTreeSitterNgTreeGenerator(); | ||
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("fn main() {\n" | ||
+ " println!(\"Hello World!\");\n" | ||
+ "}"); | ||
assertEquals(11, src.getRoot().getMetrics().size); | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...java/com/github/gumtreediff/gen/treesitterng/TypeScriptTreeSitterNgTreeGeneratorTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* This file is part of GumTree. | ||
* | ||
* GumTree is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Lesser General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* GumTree is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Lesser General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Lesser General Public License | ||
* along with GumTree. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* Copyright 2024 Jean-Rémy Falleri <[email protected]> | ||
*/ | ||
package com.github.gumtreediff.gen.treesitterng; | ||
|
||
import com.github.gumtreediff.tree.TreeContext; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.IOException; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
public class TypeScriptTreeSitterNgTreeGeneratorTest { | ||
private final TypeScriptTreeSitterNgTreeGenerator generator = new TypeScriptTreeSitterNgTreeGenerator(); | ||
|
||
@Test | ||
public void testHelloWorld() throws IOException { | ||
TreeContext src = generator.generateFrom().string("alert('Hello World!');"); | ||
assertEquals(12, src.getRoot().getMetrics().size); | ||
} | ||
} |