From 2e5e034bc821df75b51b0d326a33b96418939525 Mon Sep 17 00:00:00 2001 From: Heiko Klare Date: Sun, 15 Sep 2024 15:22:31 +0200 Subject: [PATCH] Migrate resources propertytester tests to JUnit 5 #903 Migrates the tests in org.eclipse.core.tests.interal.propertytester to JUnit 5. - Exchange JUnit 4 test annotations - Replace JUnit 4 assertions with JUnit 5 assertions - Parameterize tests Contributes to https://github.com/eclipse-platform/eclipse.platform/issues/903 --- .../FilePropertyTesterTest.java | 95 ++++++++----------- 1 file changed, 40 insertions(+), 55 deletions(-) diff --git a/resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/propertytester/FilePropertyTesterTest.java b/resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/propertytester/FilePropertyTesterTest.java index 7af798c4cb8..4bbd8b94b2e 100644 --- a/resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/propertytester/FilePropertyTesterTest.java +++ b/resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/propertytester/FilePropertyTesterTest.java @@ -16,26 +16,27 @@ import static org.eclipse.core.resources.ResourcesPlugin.getWorkspace; import static org.eclipse.core.tests.resources.ResourceTestUtil.createRandomContentsStream; import static org.eclipse.core.tests.resources.ResourceTestUtil.createTestMonitor; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.assertTrue; import java.io.ByteArrayInputStream; import java.nio.charset.StandardCharsets; +import java.util.List; +import java.util.stream.Stream; import org.eclipse.core.internal.propertytester.FilePropertyTester; import org.eclipse.core.resources.IFile; import org.eclipse.core.resources.IProject; import org.eclipse.core.runtime.CoreException; -import org.eclipse.core.tests.resources.WorkspaceTestRule; import org.eclipse.core.tests.resources.content.IContentTypeManagerTest; -import org.junit.Before; -import org.junit.Rule; -import org.junit.Test; +import org.eclipse.core.tests.resources.util.WorkspaceResetExtension; +import org.junit.jupiter.api.BeforeEach; +import org.junit.jupiter.api.extension.ExtendWith; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.MethodSource; +@ExtendWith(WorkspaceResetExtension.class) public class FilePropertyTesterTest { - @Rule - public WorkspaceTestRule workspaceRule = new WorkspaceTestRule(); - private static final String CONTENT_TYPE_ID = "contentTypeId"; private static final String IS_KIND_OF = "kindOf"; private static final String USE_FILENAME_ONLY = "useFilenameOnly"; @@ -43,7 +44,7 @@ public class FilePropertyTesterTest { private FilePropertyTester tester = null; private IProject project = null; - @Before + @BeforeEach public void setUp() throws CoreException { project = getWorkspace().getRoot().getProject("project1"); project.create(createTestMonitor()); @@ -51,74 +52,58 @@ public void setUp() throws CoreException { tester = new FilePropertyTester(); } - @Test - public void testNonExistingTextFile() throws Throwable { + private static Stream> arguments() { + return Stream.of( // + List.of(), // + List.of(IS_KIND_OF), // + List.of(USE_FILENAME_ONLY), // + List.of(IS_KIND_OF, USE_FILENAME_ONLY) // + ); + } + + @ParameterizedTest + @MethodSource("arguments") + public void testNonExistingTextFile(List arguments) throws Throwable { String expected = "org.eclipse.core.runtime.text"; IFile target = project.getFile("tmp.txt"); - boolean ret; - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {}, expected); - assertFalse("1.0", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF}, expected); - assertFalse("1.1", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {USE_FILENAME_ONLY}, expected); - assertTrue("1.2", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF, USE_FILENAME_ONLY}, expected); - assertTrue("1.3", ret); - + boolean testResult = tester.test(target, CONTENT_TYPE_ID, arguments.toArray(), expected); + assertEquals(arguments.contains(USE_FILENAME_ONLY), testResult); } - @Test - public void testExistingTextFile() throws Throwable { + @ParameterizedTest + @MethodSource("arguments") + public void testExistingTextFile(List arguments) throws Throwable { String expected = "org.eclipse.core.runtime.text"; IFile target = project.getFile("tmp.txt"); target.create(createRandomContentsStream(), true, createTestMonitor()); - boolean ret; - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {}, expected); - assertTrue("1.0", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF}, expected); - assertTrue("1.1", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {USE_FILENAME_ONLY}, expected); - assertTrue("1.2", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF, USE_FILENAME_ONLY}, expected); - assertTrue("1.3", ret); + assertTrue(tester.test(target, CONTENT_TYPE_ID, arguments.toArray(), expected)); } - @Test - public void testNonExistingNsRootElementFile() throws Throwable { + @ParameterizedTest + @MethodSource("arguments") + public void testNonExistingNsRootElementFile(List arguments) throws Throwable { String expectedBase = "org.eclipse.core.runtime.xml"; String expectedExact = "org.eclipse.core.tests.resources.ns-root-element"; + String expected = arguments.isEmpty() ? expectedExact : expectedBase; IFile target = project.getFile("tmp.xml"); - boolean ret; - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {}, expectedExact); - assertFalse("1.0", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF}, expectedBase); - assertFalse("1.1", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {USE_FILENAME_ONLY}, expectedBase); - assertTrue("1.2", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF, USE_FILENAME_ONLY}, expectedBase); - assertTrue("1.3", ret); + boolean testResult = tester.test(target, CONTENT_TYPE_ID, arguments.toArray(), expected); + assertEquals(arguments.contains(USE_FILENAME_ONLY), testResult); } - @Test - public void testExistingNsRootElementFile() throws Throwable { + @ParameterizedTest + @MethodSource("arguments") + public void testExistingNsRootElementFile(List arguments) throws Throwable { String expectedBase = "org.eclipse.core.runtime.xml"; String expectedExact = "org.eclipse.core.tests.resources.ns-root-element"; + String expected = arguments.isEmpty() ? expectedExact : expectedBase; IFile target = project.getFile("tmp.xml"); byte[] bytes = IContentTypeManagerTest.XML_ROOT_ELEMENT_NS_MATCH1.getBytes(StandardCharsets.UTF_8); target.create(new ByteArrayInputStream(bytes), true, createTestMonitor()); - boolean ret; - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {}, expectedExact); - assertTrue("1.0", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF}, expectedBase); - assertTrue("1.1", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {USE_FILENAME_ONLY}, expectedBase); - assertTrue("1.2", ret); - ret = tester.test(target, CONTENT_TYPE_ID, new String[] {IS_KIND_OF, USE_FILENAME_ONLY}, expectedBase); - assertTrue("1.3", ret); + assertTrue(tester.test(target, CONTENT_TYPE_ID, arguments.toArray(), expected)); } }