tempto icon indicating copy to clipboard operation
tempto copied to clipboard

A testing framework for Presto

Results 49 tempto issues
Sort by recently updated
recently updated
newest added

Current CLI syntax allows excluding a group of tests via -x, but I sometimes need to exclude a single test, and would like to do this without creating a new...

Now when `@Test(singleThreaded = true)` is used tempto is failing with an exception that no tests are executed.

I wanted a test only using the `TestInitializationListener`, but it doesn't seem to work unless all three of ``` @Listeners({RequirementsExpanderInterceptor.class, TestInitializationListener.class, ProgressLoggingListener.class}) ``` are included.

3rd column in this instance: 2016-11-21 20:13:42 SEVERE: Failure cause: java.lang.AssertionError: Could not find rows: [abc, 123, [B@6880c591, false, 456.789, 1234.5678, 90123.453125, [1,2,3], 127.0.0.1, 1, [4,5,6], {"a":1,"b":2}, [4,5,6], this is...

When a query has partial sorting it would be nice to write expected result file which could support that (without modification for queries). See below example: ``` SELECT a, b...

There should be a way to define different table name (and schema) to be created in DB than the one specified in repository. E.g. this should be possible to instantiate...

enhancement

Currently, if you want to create a table with complex types, you have to create a custom Java-based DataSource.

See the example: ``` -- delimiter: |; types: BIGINT|BIGINT|INTEGER|DOUBLE|DOUBLE|BIGINT|BIGINT|INTEGER|DOUBLE|DOUBLE 1|1569|1|212.000000|1.6302135196395|1|1569|2|239.250000|1.2641513267824| 1|5627|1|282.750000|1.5657032366347|1|5627|2|297.500000|1.2084286841446| 1|7999|1|166.250000|1.7924231710846|1|7999|2|375.333333|1.0080922644484| ``` Row values have to finish with delimiter while column types have to not.