summaryrefslogtreecommitdiff
path: root/src/couch/test/eunit/couch_db_props_upgrade_tests.erl
blob: 40ad283cf31734b54d1b890b5e89a8bc54977a73 (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
% 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(couch_db_props_upgrade_tests).

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


setup() ->
    DbName = <<"test">>,
    DbFileName = "test.couch",
    OldDbFilePath = filename:join([?FIXTURESDIR, DbFileName]),

    DbDir = config:get("couchdb", "database_dir"),
    NewDbFilePath = filename:join([DbDir, DbFileName]),

    file:delete(NewDbFilePath),
    {ok, _} = file:copy(OldDbFilePath, NewDbFilePath),

    DbName.


teardown(DbName) when is_binary(DbName) ->
    couch_server:delete(DbName, [?ADMIN_CTX]),
    ok.


old_db_info_test_() ->
    {
        "Old database versions work",
        {
            setup,
            fun test_util:start_couch/0,
            fun test_util:stop_couch/1,
            {
                foreach,
                fun setup/0,
                fun teardown/1,
                [
                    fun can_get_props/1,
                    fun can_get_db_info/1,
                    fun can_compact_db/1
                ]
            }
        }
    }.


can_get_props(DbName) ->
    ?_test(begin
        {ok, Db} = couch_db:open_int(DbName, []),
        Props = couch_db_engine:get_props(Db),
        ?assert(is_list(Props))
      end).


can_get_db_info(DbName) ->
    ?_test(begin
        {ok, Db} = couch_db:open_int(DbName, []),
        {ok, Info} = couch_db:get_db_info(Db),
        Props = couch_util:get_value(props, Info),
        ?assertEqual({[]}, Props)
      end).


can_compact_db(DbName) ->
    ?_test(begin
        couch_util:with_db(DbName, fun(Db) ->
            couch_db:start_compact(Db),
            couch_db:wait_for_compaction(Db)
        end)
    end).