mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
RTS-890: Change expected error message for
ts_simple_select_unexpected_token_not_allowed
This commit is contained in:
parent
304652b69f
commit
d6a30c9f2f
@ -33,7 +33,7 @@ confirm() ->
|
||||
Qry =
|
||||
"selectah * from GeoCheckin "
|
||||
"Where time > 1 and time < 10",
|
||||
{error, Got} = ts_util:ts_query(
|
||||
Got = ts_util:ts_query(
|
||||
ts_util:cluster_and_connect(single), TestType, DDL, Data, Qry),
|
||||
?assertNotEqual(0, string:str(binary_to_list(Got), "Unexpected token")),
|
||||
ts_util:assert_error_regex({error, {1020, <<".*Unexpected token.*">>}}, Got),
|
||||
pass.
|
||||
|
@ -25,6 +25,7 @@
|
||||
activate_bucket_type/2,
|
||||
activate_bucket_type/3,
|
||||
assert/3,
|
||||
assert_error_regex/2,
|
||||
assert_float/3,
|
||||
build_cluster/1,
|
||||
cluster_and_connect/1,
|
||||
@ -496,6 +497,14 @@ assert(String, Exp, Got) -> lager:info("*****************", []),
|
||||
lager:info("*****************", []),
|
||||
fail.
|
||||
|
||||
%% Match an error code and use a regex to match the error string
|
||||
assert_error_regex({error, {Code, Regex}}, {error, {Code, Msg}}) ->
|
||||
{ok, RE} = re:compile(Regex),
|
||||
Match = re:run(Msg, RE),
|
||||
?assertNotEqual(Match, nomatch);
|
||||
assert_error_regex(Got, Expected) ->
|
||||
?assertEqual(Got, Expected).
|
||||
|
||||
results(Results) ->
|
||||
Expected = lists:duplicate(length(Results), pass),
|
||||
?assertEqual(Expected, Results).
|
||||
|
Loading…
Reference in New Issue
Block a user