blob: 005cd66a013398370116abae4ed36ed0dc788507 [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.sysds.test.functions.lineage;
import java.util.ArrayList;
import java.util.List;
import org.apache.sysds.hops.OptimizerUtils;
import org.apache.sysds.runtime.lineage.Lineage;
import org.apache.sysds.runtime.lineage.LineageItem;
import org.apache.sysds.runtime.lineage.LineageParser;
import org.apache.sysds.test.TestUtils;
import org.apache.sysds.utils.Explain;
import org.junit.Test;
public class LineageTraceRandomTest extends LineageBase {
protected static final String TEST_DIR = "functions/lineage/";
protected static final String TEST_NAME1 = "LineageTraceRandom1";
protected static final String TEST_NAME2 = "LineageTraceRandom2";
protected String TEST_CLASS_DIR = TEST_DIR + LineageTraceRandomTest.class.getSimpleName() + "/";
@Override
public void setUp() {
addTestConfiguration(TEST_CLASS_DIR, TEST_NAME1);
addTestConfiguration(TEST_CLASS_DIR, TEST_NAME2);
}
@Test
public void testLineageTraceRandom1() { testLineageTraceRandom(TEST_NAME1); }
@Test
public void testLineageTraceRandom2() { testLineageTraceRandom(TEST_NAME2); }
private void testLineageTraceRandom(String testname) {
boolean old_simplification = OptimizerUtils.ALLOW_ALGEBRAIC_SIMPLIFICATION;
boolean old_sum_product = OptimizerUtils.ALLOW_SUM_PRODUCT_REWRITES;
try {
LOG.debug("------------ BEGIN " + testname + "------------");
OptimizerUtils.ALLOW_ALGEBRAIC_SIMPLIFICATION = false;
OptimizerUtils.ALLOW_SUM_PRODUCT_REWRITES = false;
getAndLoadTestConfiguration(testname);
List<String> proArgs = new ArrayList<>();
proArgs.add("-stats");
proArgs.add("-lineage");
proArgs.add("-args");
proArgs.add(output("X"));
proArgs.add(output("Y"));
programArgs = proArgs.toArray(new String[proArgs.size()]);
fullDMLScriptName = getScript();
Lineage.resetInternalState();
runTest(true, EXCEPTION_NOT_EXPECTED, null, -1);
String X_lineage = readDMLLineageFromHDFS("X");
String Y_lineage = readDMLLineageFromHDFS("Y");
LineageItem X_li = LineageParser.parseLineageTrace(X_lineage);
LineageItem Y_li = LineageParser.parseLineageTrace(Y_lineage);
TestUtils.compareScalars(X_lineage, Explain.explain(X_li));
TestUtils.compareScalars(Y_lineage, Explain.explain(Y_li));
} finally {
OptimizerUtils.ALLOW_ALGEBRAIC_SIMPLIFICATION = old_simplification;
OptimizerUtils.ALLOW_SUM_PRODUCT_REWRITES = old_sum_product;
}
}
}