com.bigdata.rdf.internal.constraints.TestSubstrBOp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigdata-rdf-test Show documentation
Show all versions of bigdata-rdf-test Show documentation
Blazegraph(TM) RDF Test Suites
/**
Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved.
Contact:
SYSTAP, LLC DBA Blazegraph
2501 Calvert ST NW #106
Washington, DC 20008
[email protected]
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/*
* Created on March 11, 2008
*/
package com.bigdata.rdf.internal.constraints;
import com.bigdata.bop.Constant;
import com.bigdata.bop.bindingSet.ListBindingSet;
import com.bigdata.journal.ITx;
import com.bigdata.rdf.internal.IV;
import com.bigdata.rdf.model.BigdataLiteral;
import com.bigdata.rdf.model.BigdataValue;
import com.bigdata.rdf.model.BigdataValueFactory;
import com.bigdata.rdf.sparql.ast.DummyConstantNode;
import com.bigdata.rdf.sparql.ast.GlobalAnnotations;
import com.bigdata.rdf.store.AbstractTripleStore;
import com.bigdata.rdf.store.ProxyTestCase;
/**
* Test suite for {@link SubstrBOp}.
*
* @author Mike Personick
* @version $Id$
*/
public class TestSubstrBOp extends ProxyTestCase {
// private static final Logger log = Logger.getLogger(TestSubstrBOp.class);
/**
*
*/
public TestSubstrBOp() {
super();
}
/**
* @param name
*/
public TestSubstrBOp(String name) {
super(name);
}
// @Override
// public Properties getProperties() {
// final Properties props = super.getProperties();
// props.setProperty(BigdataSail.Options.INLINE_DATE_TIMES, "true");
// return props;
// }
@SuppressWarnings({ "rawtypes", "unchecked" })
public void test_substr() {
final AbstractTripleStore db = getStore();
try {
final BigdataValueFactory vf = db.getValueFactory();
final BigdataLiteral plain_text = vf.createLiteral("plain text");
db.addTerms( new BigdataValue[] { plain_text} );
final IV _0 = DummyConstantNode.toDummyIV(vf.createLiteral(0));
final IV _1 = DummyConstantNode.toDummyIV(vf.createLiteral(1));
final IV _3 = DummyConstantNode.toDummyIV(vf.createLiteral(3));
final IV _9999 = DummyConstantNode.toDummyIV(vf.createLiteral(9999));
final ListBindingSet emptyBindingSet = new ListBindingSet();
// substr("plain text",1,3)
{
final IV expected = DummyConstantNode.toDummyIV(vf
.createLiteral("pla"));
// Cache the value on the IV.
plain_text.getIV().setValue(plain_text);
final IV actual = new SubstrBOp(//
new Constant(plain_text.getIV()), //
new Constant(_1), //
new Constant(_3),//
new GlobalAnnotations(vf.getNamespace(), ITx.READ_COMMITTED)//
).get(emptyBindingSet);
assertEquals(expected, actual);
}
// substr("plain text",1,9999)
{
final IV expected = DummyConstantNode.toDummyIV(vf
.createLiteral("plain text"));
// Cache the value on the IV.
plain_text.getIV().setValue(plain_text);
final IV actual = new SubstrBOp(//
new Constant(plain_text.getIV()), //
new Constant(_1), //
new Constant(_9999),//
new GlobalAnnotations(vf.getNamespace(), ITx.READ_COMMITTED)//
).get(emptyBindingSet);
assertEquals(expected, actual);
}
// substr("plain text",0,3)
{
final IV expected = DummyConstantNode.toDummyIV(vf
.createLiteral("pla"));
// Cache the value on the IV.
plain_text.getIV().setValue(plain_text);
final IV actual = new SubstrBOp(//
new Constant(plain_text.getIV()), //
new Constant(_0), //
new Constant(_3),//
new GlobalAnnotations(vf.getNamespace(), ITx.READ_COMMITTED)//
).get(emptyBindingSet);
assertEquals(expected, actual);
}
} finally {
db.__tearDownUnitTest();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy