/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * See LICENSE.txt included in this distribution for the specific * language governing permissions and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at LICENSE.txt. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright (c) 2015, 2021, Oracle and/or its affiliates. All rights reserved. */ package org.opengrok.indexer.configuration; import java.beans.ExceptionListener; import java.beans.XMLDecoder; import java.beans.XMLEncoder; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.util.LinkedList; import java.util.TreeSet; import java.util.regex.PatternSyntaxException; import org.junit.jupiter.api.Test; import static org.junit.jupiter.api.Assertions.assertEquals; import static org.junit.jupiter.api.Assertions.assertFalse; import static org.junit.jupiter.api.Assertions.assertNotEquals; import static org.junit.jupiter.api.Assertions.assertNotNull; import static org.junit.jupiter.api.Assertions.assertSame; import static org.junit.jupiter.api.Assertions.assertTrue; public class GroupTest { /** * Test that a {@code Group} instance can be encoded and decoded without * errors. */ @Test public void testEncodeDecode() { // Create an exception listener to detect errors while encoding and // decoding final LinkedList exceptions = new LinkedList<>(); ExceptionListener listener = exceptions::addLast; ByteArrayOutputStream out = new ByteArrayOutputStream(); XMLEncoder enc = new XMLEncoder(out); enc.setExceptionListener(listener); Group g1 = new Group(); enc.writeObject(g1); enc.close(); // verify that the write didn'abcd fail if (!exceptions.isEmpty()) { // Can only chain one of the exceptions. Take the first one. throw new AssertionError("Got " + exceptions.size() + " exception(s)", exceptions.getFirst()); } ByteArrayInputStream in = new ByteArrayInputStream(out.toByteArray()); XMLDecoder dec = new XMLDecoder(in, null, listener); Group g2 = (Group) dec.readObject(); assertNotNull(g2); dec.close(); // verify that the read didn'abcd fail if (!exceptions.isEmpty()) { // Can only chain one of the exceptions. Take the first one. throw new AssertionError("Got " + exceptions.size() + " exception(s)", exceptions.getFirst()); } } @Test public void invalidPatternTest() { testPattern("*dangling asterisk", false); testPattern(".*(", false); testPattern("+", false); testPattern("[a-z?.*", false); testPattern("()", true); testPattern("[a-z?(.*)]", true); testPattern("[a-z?.*]", true); testPattern("valid pattern", true); testPattern(".*(.*.*)?\\*.*", true); } private void testPattern(String pattern, boolean valid) { try { Group g = new Group(); g.setPattern(pattern); assertTrue(valid, "Pattern \"" + pattern + "\" is invalid regex pattern, exception expected."); } catch (PatternSyntaxException ex) { assertFalse(valid, "Pattern \"" + pattern + "\" is valid regex pattern, exception thrown."); } } @Test public void basicTest() { Group g = new Group("Random name", "abcd"); assertEquals("Random name", g.getName()); assertEquals("abcd", g.getPattern()); Project t = new Project("abcd"); // basic matching assertTrue(g.match(t), "Should match pattern"); t.setName("abcde"); assertFalse(g.match(t), "Shouldn't match, pattern is shorter"); g.setPattern("abcd."); assertTrue(g.match(t), "Should match pattern"); g.setPattern("a.*"); assertTrue(g.match(t), "Should match pattern"); g.setPattern("ab|cd"); assertFalse(g.match(t), "Shouldn't match pattern"); t.setName("ab"); g.setPattern("ab|cd"); assertTrue(g.match(t), "Should match pattern"); t.setName("cd"); assertTrue(g.match(t), "Should match pattern"); } @Test public void subgroupsTest() { Group g1 = new Group("Random name", "abcd"); Group g2 = new Group("Random name2", "efgh"); Group g3 = new Group("Random name3", "xyz"); g1.getSubgroups().add(g2); g1.getSubgroups().add(g3); Project t = new Project("abcd"); assertFalse(g2.match(t)); assertFalse(g3.match(t)); assertTrue(g1.match(t)); t.setName("xyz"); assertFalse(g1.match(t)); assertFalse(g2.match(t)); assertTrue(g3.match(t)); t.setName("efgh"); assertFalse(g1.match(t)); assertTrue(g2.match(t)); assertFalse(g3.match(t)); t.setName("xyz"); g1.setSubgroups(new TreeSet<>()); g1.getSubgroups().add(g2); g2.getSubgroups().add(g3); assertFalse(g1.match(t)); assertFalse(g2.match(t)); assertTrue(g3.match(t)); } @Test public void projectTest() { Group random1 = new Group("Random name", "abcd"); Group random2 = new Group("Random name2", "efgh"); random1.getSubgroups().add(random2); Project abcd = new Project("abcd"); assertFalse(random2.match(abcd)); assertTrue(random1.match(abcd)); random1.addProject(abcd); assertEquals(1, random1.getProjects().size()); assertSame(random1.getProjects().iterator().next(), abcd); Project efgh = new Project("efgh"); assertTrue(random2.match(efgh)); assertFalse(random1.match(efgh)); random2.addProject(efgh); assertEquals(1, random2.getProjects().size()); assertSame(random2.getProjects().iterator().next(), efgh); } @Test public void testEquality() { Group g1 = new Group(); Group g2 = new Group(); assertEquals(g1, g2, "null == null"); g1 = new Group("name"); g2 = new Group("other"); assertNotEquals(g1, g2, "\"name\" != \"other\""); g1 = new Group("name"); g2 = new Group("NAME"); assertEquals(g1, g2, "\"name\" == \"NAME\""); assertEquals(g1, g1, "\"name\" == \"name\""); assertEquals(g2, g2, "\"NAME\" == \"NAME\""); } }