mirror of
https://github.com/valitydev/riak_test.git
synced 2024-11-06 08:35:22 +00:00
4744eecd47
converting ts_util calls to new ts library calls modified ts_setup:create_bucket_type more test updating Replace ts_util with ts_setup, ts_ops and ts_data
93 lines
2.7 KiB
Erlang
93 lines
2.7 KiB
Erlang
%% -------------------------------------------------------------------
|
|
%%
|
|
%% Copyright (c) 2015-2016 Basho Technologies, Inc.
|
|
%%
|
|
%% 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),
|
|
|
|
TsQueryFn =
|
|
fun(Query_x) ->
|
|
ts_ops:query(Cluster, Query_x)
|
|
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">>}}.
|