riak_test/tests/ts_simple_put_non_existent_bucket.erl

44 lines
1.2 KiB
Erlang
Raw Normal View History

%% -------------------------------------------------------------------
%%
%% Copyright (c) 2015 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_put_non_existent_bucket).
2015-09-22 11:39:37 +00:00
%%
2015-11-06 23:27:42 +00:00
%% this test tries to write to a non-existent bucket
2015-09-22 11:39:37 +00:00
%%
-behavior(riak_test).
-export([confirm/0]).
2015-09-22 11:39:37 +00:00
-include_lib("eunit/include/eunit.hrl").
2015-09-22 11:39:37 +00:00
confirm() ->
Table = ts_data:get_default_bucket(),
Obj = [ts_data:get_invalid_obj()],
Cluster = ts_setup:start_cluster(1),
Got = ts_ops:put(Cluster, Table, Obj),
2015-11-06 23:27:42 +00:00
?assertMatch({error, _}, Got),
pass.
2015-11-19 20:13:26 +00:00