Add some tests before working on #640 and #409

This commit is contained in:
Tom Morris 2013-02-01 17:14:46 -05:00
parent c0347225b8
commit 0da4214f88
2 changed files with 224 additions and 0 deletions

View File

@ -0,0 +1,111 @@
/*
Copyright 2013 Thomas F. Morris & other contributors
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the names of the project or its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.google.refine.tests.clustering.binning;
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import com.google.refine.clustering.binning.FingerprintKeyer;
import com.google.refine.clustering.binning.Keyer;
import com.google.refine.clustering.binning.NGramFingerprintKeyer;
import com.google.refine.tests.RefineTest;
public class KeyerTests extends RefineTest {
private static Keyer keyer;
private static final String[][] testStrings = {
{"the multi multi word test","multi test the word"},
{"a b c d","a b c d"},
{" d c b a ","a b c d"},
{"\tABC \t DEF ","abc def"}, // test leading and trailing whitespace
{"bbb\taaa","aaa bbb"},
{"",""},
{"",""},
{"",""},
};
private static final String[][] testNGramStrings = {
{"abcdefg","abbccddeeffg"},
{"",""}, //TODO: add more test cases
{"",""},
{"",""},
};
@Override
@BeforeTest
public void init() {
logger = LoggerFactory.getLogger(this.getClass());
}
@BeforeMethod
public void SetUp() {
keyer = new FingerprintKeyer();
}
@AfterMethod
public void TearDown() {
keyer = null;
}
@Test(expectedExceptions=IllegalArgumentException.class)
public void testInvalidParams() {
keyer.key("test",(Object[])new String[]{"foo"});
}
@Test
public void testFingerprintKeyer() {
for (String[] ss : testStrings) {
Assert.assertEquals(ss.length,2,"Invalid test"); // Not a valid test
Assert.assertEquals(keyer.key(ss[0]),ss[1],
"Fingerprint for string: " + ss[0] + " failed");
}
}
@Test
public void testNGramKeyer() {
keyer = new NGramFingerprintKeyer();
for (String[] ss : testNGramStrings) {
Assert.assertEquals(ss.length,2,"Invalid test"); // Not a valid test
Assert.assertEquals(keyer.key(ss[0]),ss[1],
"Fingerprint for string: " + ss[0] + " failed");
}
}
}

View File

@ -0,0 +1,113 @@
/*
Copyright 2013 Thomas F. Morris & other contributors
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the names of the project or its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package com.google.refine.tests.expr.functions.strings;
import java.util.Properties;
import org.slf4j.LoggerFactory;
import org.testng.Assert;
import org.testng.annotations.AfterMethod;
import org.testng.annotations.BeforeMethod;
import org.testng.annotations.BeforeTest;
import org.testng.annotations.Test;
import com.google.refine.grel.ControlFunctionRegistry;
import com.google.refine.grel.Function;
import com.google.refine.tests.RefineTest;
public class FingerprintTests extends RefineTest {
static Properties bindings;
private static final String[][] testStrings = {
{"schön","schon"},
{"Ære Øre Åre", "aere are ore"},
{"Straße","strasse"},
{"\tABC \t DEF ","abc def"}, // test leading and trailing whitespace
{"bbb\taaa","aaa bbb"},
{"müller","muller"},
// {"müller","mueller"}, // another possible interpretation
{"fiflij","fiflij"},
{"","אל"},
{"œ ӕ","ae oe"},
{"",""},
};
@Override
@BeforeTest
public void init() {
logger = LoggerFactory.getLogger(this.getClass());
}
@BeforeMethod
public void SetUp() {
bindings = new Properties();
}
@AfterMethod
public void TearDown() {
bindings = null;
}
/**
* Lookup a control function by name and invoke it with a variable number of args
*/
private static Object invoke(String name,Object... args) {
// registry uses static initializer, so no need to set it up
Function function = ControlFunctionRegistry.getFunction(name);
if (function == null) {
throw new IllegalArgumentException("Unknown function "+name);
}
if (args == null) {
return function.call(bindings,new Object[0]);
} else {
return function.call(bindings,args);
}
}
@Test
public void testInvalidParams() {
Assert.assertNull(invoke("fingerprint"));
Assert.assertNull(invoke("fingerprint", "one","two","three"));
Assert.assertNull(invoke("fingerprint", Long.getLong("1")));
}
@Test
public void testNormalize() {
for (String[] ss : testStrings) {
Assert.assertEquals(ss.length,2,"Invalid test"); // Not a valid test
Assert.assertEquals((String)(invoke("fingerprint", ss[0])),ss[1],
"Fingerprint for string: " + ss[0] + " failed");
}
}
}