/** Copyright (C) SYSTAP, LLC DBA Blazegraph 2006-2016. All rights reserved. Contact: SYSTAP, LLC DBA Blazegraph 2501 Calvert ST NW #106 Washington, DC 20008 licenses@blazegraph.com 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.rdf.internal.IV; import com.bigdata.rdf.internal.impl.literal.XSDBooleanIV; import com.bigdata.rdf.model.BigdataValueFactory; import com.bigdata.rdf.sparql.ast.DummyConstantNode; import com.bigdata.rdf.store.AbstractTripleStore; import com.bigdata.rdf.store.ProxyTestCase; /** * Test suite for {@link RegexBOp}. * * @author <a href="mailto:mpersonick@users.sourceforge.net">Mike Personick</a> */ public class TestRegexBOp extends ProxyTestCase { // private static final Logger log = Logger.getLogger(TestSubstrBOp.class); /** * */ public TestRegexBOp() { super(); } /** * @param name */ public TestRegexBOp(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_bop() { final AbstractTripleStore db = getStore(); try { final BigdataValueFactory vf = db.getValueFactory(); final ListBindingSet emptyBindingSet = new ListBindingSet(); // regex("Alice", "^ali", "i") -> true { final boolean expected = true; final IV var = DummyConstantNode.toDummyIV(vf .createLiteral("Alice")); final IV pattern = DummyConstantNode.toDummyIV(vf .createLiteral("^ali")); final IV flags = DummyConstantNode.toDummyIV(vf .createLiteral("i")); final boolean actual = new RegexBOp(// new Constant<IV>(var), // new Constant<IV>(pattern), // new Constant<IV>(flags)// ).accept(emptyBindingSet); assertEquals(expected, actual); } // regex("Bob", "^ali", "i") -> false { final boolean expected = false; final IV var = DummyConstantNode.toDummyIV(vf .createLiteral("Bob")); final IV pattern = DummyConstantNode.toDummyIV(vf .createLiteral("^ali")); final IV flags = DummyConstantNode.toDummyIV(vf .createLiteral("i")); final boolean actual = new RegexBOp(// new Constant<IV>(var), // new Constant<IV>(pattern), // new Constant<IV>(flags)// ).accept(emptyBindingSet); assertEquals(expected, actual); } } finally { db.__tearDownUnitTest(); } } }