summaryrefslogtreecommitdiff
path: root/test/etap/072-cleanup.t
blob: 6f97193d358cd2918bde90575977b05c800d0400 (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
#!/usr/bin/env escript
%% -*- erlang -*-

% 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.

-define(TEST_DB, <<"etap-test-db">>).

-record(user_ctx, {
    name = null,
    roles = [],
    handler
}).

-define(ADMIN_USER, #user_ctx{roles=[<<"_admin">>]}).

main(_) ->
    test_util:init_code_path(),

    etap:plan(7),
    try test() of
        ok ->
            etap:end_tests()
    catch
        Other ->
            etap:diag(io_lib:format("Test died abnormally: ~p", [Other])),
            timer:sleep(1000),
            etap:bail(Other)
    end,
    ok.

test() ->

    {ok, _} = couch_server_sup:start_link(test_util:config_files()),
    couch_server:delete(?TEST_DB, []),
    timer:sleep(1000),

    couch_db:create(?TEST_DB, []),

    {ok, AllDbs} = couch_server:all_databases(),
    etap:ok(lists:member(?TEST_DB, AllDbs), "Database was created."),

    FooRev = create_design_doc(<<"_design/foo">>, <<"bar">>),
    query_view("foo", "bar"),

    BoozRev = create_design_doc(<<"_design/booz">>, <<"baz">>),
    query_view("booz", "baz"),

    {ok, Db} = couch_db:open(?TEST_DB, [{user_ctx, ?ADMIN_USER}]),
    view_cleanup(),
    etap:is(count_index_files(), 2,
        "Two index files before any deletions."),

    delete_design_doc(<<"_design/foo">>, FooRev),
    view_cleanup(),
    etap:is(count_index_files(), 1,
        "One index file after first deletion and cleanup."),

    delete_design_doc(<<"_design/booz">>, BoozRev),
    view_cleanup(),
    etap:is(count_index_files(), 0,
        "No index files after second deletion and cleanup."),

    couch_server:delete(?TEST_DB, []),
    {ok, AllDbs2} = couch_server:all_databases(),
    etap:ok(not lists:member(?TEST_DB, AllDbs2),
        "Database was deleted."),
    ok.

create_design_doc(DDName, ViewName) ->
    {ok, Db} = couch_db:open(?TEST_DB, [{user_ctx, ?ADMIN_USER}]),
    DDoc = couch_doc:from_json_obj({[
        {<<"_id">>, DDName},
        {<<"language">>, <<"javascript">>},
        {<<"views">>, {[
            {ViewName, {[
                {<<"map">>, <<"function(doc) { emit(doc.value, 1); }">>}
            ]}}
        ]}}
    ]}),
    {ok, Rev} = couch_db:update_doc(Db, DDoc, []),
    couch_db:ensure_full_commit(Db),
    couch_db:close(Db),
    Rev.

delete_design_doc(DDName, Rev) ->
    {ok, Db} = couch_db:open(?TEST_DB, [{user_ctx, ?ADMIN_USER}]),
    DDoc = couch_doc:from_json_obj({[
        {<<"_id">>, DDName},
        {<<"_rev">>, couch_doc:rev_to_str(Rev)},
        {<<"_deleted">>, true}
    ]}),
    {ok, _} = couch_db:update_doc(Db, DDoc, [Rev]),
    couch_db:close(Db).

db_url() ->
    Addr = couch_config:get("httpd", "bind_address", "127.0.0.1"),
    Port = integer_to_list(mochiweb_socket_server:get(couch_httpd, port)),
    "http://" ++ Addr ++ ":" ++ Port ++ "/" ++
        binary_to_list(?TEST_DB).

query_view(DDoc, View) ->
    {ok, Code, _Headers, _Body} = test_util:request(
        db_url() ++ "/_design/" ++ DDoc ++ "/_view/" ++ View, [], get),
    etap:is(Code, 200, "Built view index for " ++ DDoc ++ "."),
    ok.

view_cleanup() ->
    {ok, Db} = couch_db:open(?TEST_DB, [{user_ctx, ?ADMIN_USER}]),
    couch_view:cleanup_index_files(Db),
    couch_db:close(Db).

count_index_files() ->
    % call server to fetch the index files
    RootDir = couch_config:get("couchdb", "view_index_dir"),
    length(filelib:wildcard(RootDir ++ "/." ++
        binary_to_list(?TEST_DB) ++ "_design"++"/*")).