blob: 54112152d358c3733d1b4b0be6757ddbc8096f78 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.vxquery.xtest;
import static org.junit.Assert.fail;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@RunWith(Parameterized.class)
public abstract class AbstractXQueryTest {
private TestCase tc;
private TestRunner tr;
protected abstract XTestOptions getTestOptions();
protected static XTestOptions getDefaultTestOptions() {
XTestOptions opts = new XTestOptions();
opts.verbose = false;
opts.threads = 1;
opts.showQuery = true;
opts.showResult = true;
opts.hdfsConf = "src/test/resources/hadoop/conf";
return opts;
}
public AbstractXQueryTest(TestCase tc) throws Exception {
this.tc = tc;
tr = new TestRunner(getTestOptions());
}
@Before
public void beforeTest() throws Exception {
tr.open();
}
@Test
public void test() throws Exception {
TestCaseResult result = tr.run(tc);
switch (result.state) {
case EXPECTED_ERROR_GOT_DIFFERENT_ERROR:
case EXPECTED_ERROR_GOT_FAILURE:
case EXPECTED_ERROR_GOT_RESULT:
case EXPECTED_RESULT_GOT_DIFFERENT_RESULT:
case EXPECTED_RESULT_GOT_ERROR:
case EXPECTED_RESULT_GOT_FAILURE:
fail(result.state + " (" + result.time + " ms): " + result.testCase.getXQueryDisplayName());
break;
case EXPECTED_ERROR_GOT_SAME_ERROR:
case EXPECTED_RESULT_GOT_SAME_RESULT:
break;
case NO_RESULT_FILE:
break;
}
}
@After
public void afterTest() throws Exception {
tr.close();
}
}