use of org.pentaho.di.core.row.value.ValueMetaTimestamp in project pentaho-kettle by pentaho.
the class MSSQLServerDatabaseMetaTest method testSQLStatements.
@Test
public void testSQLStatements() {
assertEquals("SELECT TOP 1 * FROM FOO", nativeMeta.getSQLQueryFields("FOO"));
String lineSep = System.getProperty("line.separator");
assertEquals("SELECT top 0 * FROM FOO WITH (UPDLOCK, HOLDLOCK);" + lineSep + "SELECT top 0 * FROM BAR WITH (UPDLOCK, HOLDLOCK);" + lineSep, nativeMeta.getSQLLockTables(new String[] { "FOO", "BAR" }));
assertEquals("ALTER TABLE FOO ADD BAR DATETIME", nativeMeta.getAddColumnStatement("FOO", new ValueMetaDate("BAR"), "", false, "", false));
assertEquals("ALTER TABLE FOO ADD BAR DATETIME", nativeMeta.getAddColumnStatement("FOO", new ValueMetaTimestamp("BAR"), "", false, "", false));
assertEquals("ALTER TABLE FOO DROP COLUMN BAR" + lineSep, nativeMeta.getDropColumnStatement("FOO", new ValueMetaString("BAR", 15, 0), "", false, "", true));
assertEquals("ALTER TABLE FOO ALTER COLUMN BAR VARCHAR(15)", nativeMeta.getModifyColumnStatement("FOO", new ValueMetaString("BAR", 15, 0), "", false, "", true));
assertEquals("ALTER TABLE FOO ALTER COLUMN BAR VARCHAR(100)", nativeMeta.getModifyColumnStatement("FOO", new ValueMetaString("BAR"), "", false, "", true));
// some subclass of the MSSQL meta probably ...
odbcMeta.setSupportsBooleanDataType(true);
assertEquals("ALTER TABLE FOO ADD BAR BIT", odbcMeta.getAddColumnStatement("FOO", new ValueMetaBoolean("BAR"), "", false, "", false));
odbcMeta.setSupportsBooleanDataType(false);
assertEquals("select o.name from sysobjects o, sysusers u where xtype in ( 'FN', 'P' ) and o.uid = u.uid order by o.name", nativeMeta.getSQLListOfProcedures("FOO"));
assertEquals("select name from sys.schemas", nativeMeta.getSQLListOfSchemas());
assertEquals("insert into FOO(FOOVERSION) values (1)", nativeMeta.getSQLInsertAutoIncUnknownDimensionRow("FOO", "FOOKEY", "FOOVERSION"));
assertEquals("SELECT NEXT VALUE FOR FOO", nativeMeta.getSQLNextSequenceValue("FOO"));
assertEquals("SELECT current_value FROM sys.sequences WHERE name = 'FOO'", nativeMeta.getSQLCurrentSequenceValue("FOO"));
assertEquals("SELECT 1 FROM sys.sequences WHERE name = 'FOO'", nativeMeta.getSQLSequenceExists("FOO"));
assertEquals("SELECT name FROM sys.sequences", nativeMeta.getSQLListOfSequences());
}
use of org.pentaho.di.core.row.value.ValueMetaTimestamp in project pentaho-kettle by pentaho.
the class NeoviewDatabaseMetaTest method testGetValueFromResultSet.
@Test
public void testGetValueFromResultSet() throws Exception {
Object rtn = null;
ResultSet resultSet = Mockito.mock(ResultSet.class);
ResultSetMetaData metaData = Mockito.mock(ResultSetMetaData.class);
Mockito.when(resultSet.getMetaData()).thenReturn(metaData);
Mockito.when(resultSet.getTimestamp(1)).thenReturn(new java.sql.Timestamp(65535));
Mockito.when(resultSet.getTime(2)).thenReturn(new java.sql.Time(1000));
// ValueMetaDate -> Timestamp
Mockito.when(resultSet.getTimestamp(3)).thenReturn(new java.sql.Timestamp(65535));
ValueMetaTimestamp ts = new ValueMetaTimestamp("FOO");
ts.setOriginalColumnType(java.sql.Types.TIMESTAMP);
ValueMetaDate tm = new ValueMetaDate("BAR");
tm.setOriginalColumnType(java.sql.Types.TIME);
ValueMetaDate dt = new ValueMetaDate("WIBBLE");
dt.setOriginalColumnType(java.sql.Types.DATE);
rtn = nativeMeta.getValueFromResultSet(resultSet, ts, 0);
assertNotNull(rtn);
assertEquals("java.sql.Timestamp", rtn.getClass().getName());
rtn = nativeMeta.getValueFromResultSet(resultSet, tm, 1);
assertNotNull(rtn);
assertEquals("java.sql.Time", rtn.getClass().getName());
rtn = nativeMeta.getValueFromResultSet(resultSet, dt, 2);
assertNotNull(rtn);
assertEquals("java.sql.Timestamp", rtn.getClass().getName());
Mockito.when(resultSet.wasNull()).thenReturn(true);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaString("WOBBLE"), 3);
assertNull(rtn);
// Verify that getDate is not called, getTime is called once, and getTimestamp was called 2 times (once for TimeStamp, once for Date)
Mockito.verify(resultSet, Mockito.times(0)).getDate(Mockito.anyInt());
Mockito.verify(resultSet, Mockito.times(1)).getTime(Mockito.anyInt());
Mockito.verify(resultSet, Mockito.times(2)).getTimestamp(Mockito.anyInt());
// Now that the date stuff is done, validate the behaviors of other aspects of getValueFromResultSet
Mockito.when(resultSet.wasNull()).thenReturn(false);
Mockito.when(resultSet.getBoolean(1)).thenReturn(new Boolean(true));
Mockito.when(resultSet.getDouble(1)).thenReturn(new Double(15));
Mockito.when(resultSet.getBigDecimal(1)).thenReturn(new BigDecimal("15"));
Mockito.when(resultSet.getLong(1)).thenReturn(new Long("15"));
Mockito.when(resultSet.getString(1)).thenReturn("ASTRING");
Mockito.when(resultSet.getBytes(1)).thenReturn("ASTRING".getBytes());
Blob mockBlob = Mockito.mock(Blob.class);
byte[] bytes = "FOO".getBytes();
ByteArrayInputStream bais = new ByteArrayInputStream(bytes);
Mockito.when(mockBlob.getBinaryStream()).thenReturn(bais);
Mockito.when(mockBlob.length()).thenReturn(new Long(bytes.length));
Mockito.when(mockBlob.getBytes(Mockito.anyLong(), Mockito.anyInt())).thenReturn(bytes);
Mockito.when(resultSet.getBlob(1)).thenReturn(mockBlob);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaBoolean("FOO"), 0);
assertNotNull(rtn);
assertTrue(rtn instanceof Boolean);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaNumber("FOO", 15, 5), 0);
assertNotNull(rtn);
assertTrue(rtn instanceof Double);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaBigNumber("FOO", 15, 5), 0);
assertNotNull(rtn);
assertTrue(rtn instanceof BigDecimal);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaInteger("FOO", 5, 0), 0);
assertNotNull(rtn);
assertTrue(rtn instanceof Long);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaString("FOO", 25, 0), 0);
assertNotNull(rtn);
assertTrue(rtn instanceof String);
ValueMetaString binStr = new ValueMetaString("FOO");
binStr.setStorageType(ValueMetaString.STORAGE_TYPE_BINARY_STRING);
rtn = nativeMeta.getValueFromResultSet(resultSet, binStr, 0);
assertNotNull(rtn);
assertTrue(rtn instanceof byte[]);
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaBinary("FOO", 150, 0), 0);
assertNotNull(rtn);
assertTrue(rtn instanceof byte[]);
try {
Mockito.when(resultSet.getBoolean(15)).thenThrow(new SQLException("Expected Exception Here"));
rtn = nativeMeta.getValueFromResultSet(resultSet, new ValueMetaBoolean("FOO"), 14);
fail("Should not get here");
} catch (Exception someException) {
assertTrue(someException instanceof KettleDatabaseException);
}
}
use of org.pentaho.di.core.row.value.ValueMetaTimestamp in project pentaho-kettle by pentaho.
the class RowMetaTest method testRowMetaInitializingFromXmlNode.
@Test
public void testRowMetaInitializingFromXmlNode() throws Exception {
String testXmlNode = null;
try (InputStream in = RowMetaTest.class.getResourceAsStream("rowMetaNode.xml")) {
testXmlNode = IOUtils.toString(in);
}
Document xmlDoc = XMLHandler.loadXMLString(testXmlNode);
RowMeta rowMeta = spy(new RowMeta(xmlDoc.getFirstChild()));
assertEquals(2, rowMeta.getValueMetaList().size());
ValueMetaInterface valueMeta = rowMeta.getValueMeta(0);
assertTrue(valueMeta instanceof ValueMetaDate);
assertEquals("testDate", valueMeta.getName());
assertNull(valueMeta.getConversionMask());
valueMeta = rowMeta.getValueMeta(1);
assertTrue(valueMeta instanceof ValueMetaTimestamp);
assertEquals("testTimestamp", valueMeta.getName());
assertEquals("yyyy/MM/dd HH:mm:ss.000000000", valueMeta.getConversionMask());
}
use of org.pentaho.di.core.row.value.ValueMetaTimestamp in project pentaho-kettle by pentaho.
the class RowTest method makeTestExtractDataWithTimestampConversion.
private void makeTestExtractDataWithTimestampConversion(RowMetaInterface rowMeta, String str, Date date, Timestamp constTimestamp) throws KettleEOFException, KettleFileException, IOException {
Object[] rowData = new Object[] { str, date };
byte[] result = RowMeta.extractData(rowMeta, rowData);
DataInputStream stream = new DataInputStream(new ByteArrayInputStream(result));
String extractedString = (String) new ValueMetaString().readData(stream);
Timestamp time = (Timestamp) new ValueMetaTimestamp().readData(stream);
stream.close();
assertTrue(str.equals(extractedString));
assertTrue(constTimestamp.equals(time));
}
use of org.pentaho.di.core.row.value.ValueMetaTimestamp in project pentaho-kettle by pentaho.
the class RowMetaAndDataTest method testEmptyValues.
@Test
public void testEmptyValues() throws Exception {
RowMeta rowsMetaEmpty = new RowMeta();
rowsMetaEmpty.addValueMeta(new ValueMetaString("str"));
rowsMetaEmpty.addValueMeta(new ValueMetaBoolean("bool"));
rowsMetaEmpty.addValueMeta(new ValueMetaInteger("int"));
rowsMetaEmpty.addValueMeta(new ValueMetaNumber("num"));
rowsMetaEmpty.addValueMeta(new ValueMetaBigNumber("bignum"));
rowsMetaEmpty.addValueMeta(new ValueMetaBinary("bin"));
rowsMetaEmpty.addValueMeta(new ValueMetaDate("date"));
rowsMetaEmpty.addValueMeta(new ValueMetaTimestamp("timestamp"));
rowsMetaEmpty.addValueMeta(new ValueMetaInternetAddress("inet"));
row = new RowMetaAndData(rowsMetaEmpty, null, null, null, null, null, null, null, null, null);
assertTrue(row.isEmptyValue("str"));
assertTrue(row.isEmptyValue("bool"));
assertTrue(row.isEmptyValue("int"));
assertTrue(row.isEmptyValue("num"));
assertTrue(row.isEmptyValue("bignum"));
assertTrue(row.isEmptyValue("bin"));
assertTrue(row.isEmptyValue("date"));
assertTrue(row.isEmptyValue("timestamp"));
assertTrue(row.isEmptyValue("inet"));
}
Aggregations