riak_test/tests/ts_simple_div_by_zero.erl

93 lines
2.7 KiB
Erlang
Raw Normal View History

2016-01-20 14:59:49 +00:00
%% -------------------------------------------------------------------
%%
%% Copyright (c) 2015-2016 Basho Technologies, Inc.
2016-01-20 14:59:49 +00:00
%%
%% This file is provided to you under the Apache License,
%% Version 2.0 (the "License"); you may not use this file
%% except in compliance with the License. You may obtain
%% a copy of the License at
%%
%% http://www.apache.org/licenses/LICENSE-2.0
%%
%% Unless required by applicable law or agreed to in writing,
%% software distributed under the License is distributed on an
%% "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
%% KIND, either express or implied. See the License for the
%% specific language governing permissions and limitations
%% under the License.
%%
%% -------------------------------------------------------------------
-module(ts_simple_div_by_zero).
-behavior(riak_test).
-export([confirm/0]).
-include_lib("eunit/include/eunit.hrl").
%% Test handling of division by zero in a query select clause.
confirm() ->
Table = table(),
DDL = ts_data:get_ddl(aggregation),
Data = ts_data:get_valid_aggregation_data_not_null(10),
Cluster = ts_setup:start_cluster(1),
ts_setup:create_bucket_type(Cluster, DDL, Table),
ts_setup:activate_bucket_type(Cluster, Table),
ts_ops:put(Cluster, Table, Data),
2016-01-20 14:59:49 +00:00
TsQueryFn =
fun(Query_x) ->
ts_ops:query(Cluster, Query_x)
2016-01-20 14:59:49 +00:00
end,
arithmetic_int_div_int_zero_test(TsQueryFn),
arithmetic_float_div_int_zero_test(TsQueryFn),
arithmetic_int_div_float_zero_test(TsQueryFn),
arithmetic_float_div_float_zero_test(TsQueryFn),
arithmetic_div_by_zero_as_function_argument_test(TsQueryFn),
pass.
%%
arithmetic_int_div_int_zero_test(TsQueryFn) ->
Actual = TsQueryFn(
"SELECT 2 / 0 FROM " ++ table() ++ where()),
?assertEqual(error_divide_by_zero(), Actual).
%%
arithmetic_float_div_int_zero_test(TsQueryFn) ->
Actual = TsQueryFn(
"SELECT 2.0 / 0 FROM " ++ table() ++ where()),
?assertEqual(error_divide_by_zero(), Actual).
%%
arithmetic_int_div_float_zero_test(TsQueryFn) ->
Actual = TsQueryFn(
"SELECT 2 / 0.0 FROM " ++ table() ++ where()),
?assertEqual(error_divide_by_zero(), Actual).
%%
arithmetic_float_div_float_zero_test(TsQueryFn) ->
Actual = TsQueryFn(
"SELECT 2.0 / 0.0 FROM " ++ table() ++ where()),
?assertEqual(error_divide_by_zero(), Actual).
%%
arithmetic_div_by_zero_as_function_argument_test(TsQueryFn) ->
Actual = TsQueryFn(
"SELECT SUM(2 / 0) FROM " ++ table() ++ where()),
?assertEqual(error_divide_by_zero(), Actual).
%%
table() ->
"WeatherData".
%%
where() ->
" "
"WHERE myfamily = 'family1' AND myseries = 'seriesX' "
"AND time >= 1 AND time <= 10 ".
error_divide_by_zero() ->
{error,{1001,<<"Divide by zero">>}}.