summaryrefslogtreecommitdiff
path: root/src/fabric/test/fabric2_db_security_tests.erl
blob: 97960116799b941afdf0e5c96241b5b156887cb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
% Licensed 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(fabric2_db_security_tests).


-include_lib("couch/include/couch_db.hrl").
-include_lib("couch/include/couch_eunit.hrl").
-include_lib("eunit/include/eunit.hrl").


security_test_() ->
    {
        "Test database security operations",
        {
            setup,
            fun setup/0,
            fun cleanup/1,
            {with, [
                fun is_admin_name/1,
                fun is_not_admin_name/1,
                fun is_admin_role/1,
                fun is_not_admin_role/1,
                fun check_is_admin/1,
                fun check_is_not_admin/1,
                fun check_is_member_name/1,
                fun check_is_not_member_name/1,
                fun check_is_member_role/1,
                fun check_is_not_member_role/1,
                fun check_admin_is_member/1,
                fun check_is_member_of_public_db/1,
                fun check_set_user_ctx/1
            ]}
        }
    }.


setup() ->
    Ctx = test_util:start_couch([fabric]),
    DbName = ?tempdb(),
    {ok, Db1} = fabric2_db:create(DbName, [{user_ctx, ?ADMIN_USER}]),
    SecProps = {[
        {<<"admins">>, {[
            {<<"names">>, [<<"admin_name1">>, <<"admin_name2">>]},
            {<<"roles">>, [<<"admin_role1">>, <<"admin_role2">>]}
        ]}},
        {<<"members">>, {[
            {<<"names">>, [<<"member_name1">>, <<"member_name2">>]},
            {<<"roles">>, [<<"member_role1">>, <<"member_role2">>]}
        ]}}
    ]},
    ok = fabric2_db:set_security(Db1, SecProps),
    {ok, Db2} = fabric2_db:open(DbName, []),
    {Db2, Ctx}.


cleanup({Db, Ctx}) ->
    ok = fabric2_db:delete(fabric2_db:name(Db), []),
    test_util:stop_couch(Ctx).


is_admin_name({Db, _}) ->
    UserCtx = #user_ctx{name = <<"admin_name1">>},
    ?assertEqual(true, fabric2_db:is_admin(Db#{user_ctx := UserCtx})).


is_not_admin_name({Db, _}) ->
    UserCtx = #user_ctx{name = <<"member1">>},
    ?assertEqual(false, fabric2_db:is_admin(Db#{user_ctx := UserCtx})).


is_admin_role({Db, _}) ->
    UserCtx = #user_ctx{roles = [<<"admin_role1">>]},
    ?assertEqual(true, fabric2_db:is_admin(Db#{user_ctx := UserCtx})).


is_not_admin_role({Db, _}) ->
    UserCtx = #user_ctx{roles = [<<"member_role1">>]},
    ?assertEqual(false, fabric2_db:is_admin(Db#{user_ctx := UserCtx})).


check_is_admin({Db, _}) ->
    UserCtx = #user_ctx{name = <<"admin_name1">>},
    ?assertEqual(ok, fabric2_db:check_is_admin(Db#{user_ctx := UserCtx})).


check_is_not_admin({Db, _}) ->
    UserCtx = #user_ctx{name = <<"member_name1">>},
    ?assertThrow(
        {unauthorized, <<"You are not a db or server admin.">>},
        fabric2_db:check_is_admin(Db#{user_ctx := #user_ctx{}})
    ),
    ?assertThrow(
        {forbidden, <<"You are not a db or server admin.">>},
        fabric2_db:check_is_admin(Db#{user_ctx := UserCtx})
    ).


check_is_member_name({Db, _}) ->
    UserCtx = #user_ctx{name = <<"member_name1">>},
    ?assertEqual(ok, fabric2_db:check_is_member(Db#{user_ctx := UserCtx})).


check_is_not_member_name({Db, _}) ->
    UserCtx = #user_ctx{name = <<"foo">>},
    ?assertThrow(
        {unauthorized, <<"You are not authorized", _/binary>>},
        fabric2_db:check_is_member(Db#{user_ctx := #user_ctx{}})
    ),
    ?assertThrow(
        {forbidden, <<"You are not allowed to access", _/binary>>},
        fabric2_db:check_is_member(Db#{user_ctx := UserCtx})
    ).


check_is_member_role({Db, _}) ->
    UserCtx = #user_ctx{name = <<"foo">>, roles = [<<"member_role1">>]},
    ?assertEqual(ok, fabric2_db:check_is_member(Db#{user_ctx := UserCtx})).


check_is_not_member_role({Db, _}) ->
    UserCtx = #user_ctx{name = <<"foo">>, roles = [<<"bar">>]},
    ?assertThrow(
        {forbidden, <<"You are not allowed to access", _/binary>>},
        fabric2_db:check_is_member(Db#{user_ctx := UserCtx})
    ).


check_admin_is_member({Db, _}) ->
    UserCtx = #user_ctx{name = <<"admin_name1">>},
    ?assertEqual(ok, fabric2_db:check_is_member(Db#{user_ctx := UserCtx})).


check_is_member_of_public_db({Db, _}) ->
    PublicDb = Db#{security_doc := {[]}},
    UserCtx = #user_ctx{name = <<"foo">>, roles = [<<"bar">>]},
    ?assertEqual(
        ok,
        fabric2_db:check_is_member(PublicDb#{user_ctx := #user_ctx{}})
    ),
    ?assertEqual(
        ok,
        fabric2_db:check_is_member(PublicDb#{user_ctx := UserCtx})
    ).


check_set_user_ctx({Db0, _}) ->
    DbName = fabric2_db:name(Db0),
    UserCtx = #user_ctx{name = <<"foo">>, roles = [<<"bar">>]},
    {ok, Db1} = fabric2_db:open(DbName, [{user_ctx, UserCtx}]),
    ?assertEqual(UserCtx, fabric2_db:get_user_ctx(Db1)).