blob: d0823c70e54ba8001f66fa05514efb09fe21e7e3 [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.asterix.test.runtime;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import org.apache.asterix.common.api.INcApplicationContext;
import org.apache.asterix.test.common.TestExecutor;
import org.apache.asterix.testframework.context.TestCaseContext;
import org.apache.hyracks.control.nc.NodeControllerService;
import org.junit.AfterClass;
import org.junit.BeforeClass;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
import org.junit.runners.Parameterized.Parameters;
/**
* Runs the SQL++ specific tests on a cluster with a single partition
*/
@RunWith(Parameterized.class)
public class SqlppSinglePartitionExecutionTest {
protected static final String TEST_CONFIG_FILE_NAME = "src/test/resources/cc-single-partition.conf";
@BeforeClass
public static void setUp() throws Exception {
final TestExecutor testExecutor = new TestExecutor();
LangExecutionUtil.setUp(TEST_CONFIG_FILE_NAME, testExecutor);
setNcEndpoints(testExecutor);
}
@AfterClass
public static void tearDown() throws Exception {
LangExecutionUtil.tearDown();
}
@Parameters(name = "SqlppSinglePartitionExecutionTest {index}: {0}")
public static Collection<Object[]> tests() throws Exception {
return LangExecutionUtil.tests("only_sqlpp.xml", "testsuite_single_partition_sqlpp.xml");
}
protected TestCaseContext tcCtx;
public SqlppSinglePartitionExecutionTest(TestCaseContext tcCtx) {
this.tcCtx = tcCtx;
}
@Test
public void test() throws Exception {
LangExecutionUtil.test(tcCtx);
}
private static void setNcEndpoints(TestExecutor testExecutor) {
final NodeControllerService[] ncs = ExecutionTestUtil.integrationUtil.ncs;
final Map<String, InetSocketAddress> ncEndPoints = new HashMap<>();
final String ip = InetAddress.getLoopbackAddress().getHostAddress();
for (NodeControllerService nc : ncs) {
final String nodeId = nc.getId();
final INcApplicationContext appCtx = (INcApplicationContext) nc.getApplicationContext();
int apiPort = appCtx.getExternalProperties().getNcApiPort();
ncEndPoints.put(nodeId, InetSocketAddress.createUnresolved(ip, apiPort));
}
testExecutor.setNcEndPoints(ncEndPoints);
}
}