/* * (c) Copyright 2008, 2009 Hewlett-Packard Development Company, LP * All rights reserved. * [See end of file] */ package org.openjena.atlas.lib; import org.junit.Test ; import org.openjena.atlas.junit.BaseTest ; public class TestColumnMap extends BaseTest { @Test public void remap1() { ColumnMap x = new ColumnMap("SPO->POS", 2,0,1) ; // S->2 etc Integer[] array = {0,1,2 } ; assertEquals(Integer.valueOf(2), x.mapSlot(0, array) ) ; assertEquals(Integer.valueOf(0), x.mapSlot(1, array) ) ; assertEquals(Integer.valueOf(1), x.mapSlot(2, array) ) ; } @Test public void remap2() { ColumnMap x = new ColumnMap("SPO->POS", 2,0,1) ; Integer[] array = { 0,1,2 } ; assertEquals(Integer.valueOf(1), x.fetchSlot(0, array)) ; // The index 1 comes from position 0. assertEquals(Integer.valueOf(2), x.fetchSlot(1, array)) ; assertEquals(Integer.valueOf(0), x.fetchSlot(2, array)) ; } @Test public void remap3() { ColumnMap x = new ColumnMap("POS", 2,0,1) ; Tuple tuple = Tuple.create("S", "P", "O") ; Tuple mapped = x.map(tuple) ; Tuple expected = Tuple.create("P", "O", "S") ; assertEquals(expected, mapped) ; } @Test public void remap4() { ColumnMap x = new ColumnMap("POS", 2,0,1) ; Tuple tuple = Tuple.create("S", "P", "O") ; Tuple tuple2 = x.map(tuple) ; tuple2 = x.unmap(tuple2) ; assertEquals(tuple, tuple2) ; } @Test public void compile1() { int[] x = ColumnMap.compileMapping("SPO", "POS") ; // SPO -> POS so col 0 goes to col 2, col 1 goes to col 0 and col 2 goes to col 1 int[] expected = { 2,0,1 } ; assertArrayEquals(expected, x) ; } @Test public void compile2() { int[] x = ColumnMap.compileMapping("SPOG", "GOPS") ; int[] expected = { 3, 2, 1, 0 } ; assertArrayEquals(expected, x) ; } @Test public void map1() { ColumnMap cmap = new ColumnMap("GSPO", "OSPG") ; Tuple tuple = Tuple.create("G", "S", "P", "O") ; Tuple mapped = cmap.map(tuple) ; Tuple expected = Tuple.create("O", "S", "P", "G") ; assertEquals(expected, mapped) ; Tuple unmapped = cmap.unmap(mapped) ; assertEquals(Tuple.create("G", "S", "P", "O"), unmapped) ; } @Test public void map2() { String[] x = { "G", "S", "P", "O" } ; String[] y = { "O", "S", "P", "G" } ; ColumnMap cmap = new ColumnMap("Test", x, y) ; Tuple tuple = Tuple.create(x) ; Tuple mapped = cmap.map(tuple) ; Tuple expected = Tuple.create(y) ; assertEquals(expected, mapped) ; Tuple unmapped = cmap.unmap(mapped) ; assertEquals(Tuple.create(x), unmapped) ; } } /* * (c) Copyright 2008, 2009 Hewlett-Packard Development Company, LP * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */