aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/shed/schema_test.go
blob: a0c1838c8bc83c75d5aca2e6dbcc367ba82a43fb (plain) (blame)
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
// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package shed

import (
    "bytes"
    "testing"
)

// TestDB_schemaFieldKey validates correctness of schemaFieldKey.
func TestDB_schemaFieldKey(t *testing.T) {
    db, cleanupFunc := newTestDB(t)
    defer cleanupFunc()

    t.Run("empty name or type", func(t *testing.T) {
        _, err := db.schemaFieldKey("", "")
        if err == nil {
            t.Errorf("error not returned, but expected")
        }
        _, err = db.schemaFieldKey("", "type")
        if err == nil {
            t.Errorf("error not returned, but expected")
        }

        _, err = db.schemaFieldKey("test", "")
        if err == nil {
            t.Errorf("error not returned, but expected")
        }
    })

    t.Run("same field", func(t *testing.T) {
        key1, err := db.schemaFieldKey("test", "undefined")
        if err != nil {
            t.Fatal(err)
        }

        key2, err := db.schemaFieldKey("test", "undefined")
        if err != nil {
            t.Fatal(err)
        }

        if !bytes.Equal(key1, key2) {
            t.Errorf("schema keys for the same field name are not the same: %q, %q", string(key1), string(key2))
        }
    })

    t.Run("different fields", func(t *testing.T) {
        key1, err := db.schemaFieldKey("test1", "undefined")
        if err != nil {
            t.Fatal(err)
        }

        key2, err := db.schemaFieldKey("test2", "undefined")
        if err != nil {
            t.Fatal(err)
        }

        if bytes.Equal(key1, key2) {
            t.Error("schema keys for the same field name are the same, but must not be")
        }
    })

    t.Run("same field name different types", func(t *testing.T) {
        _, err := db.schemaFieldKey("the-field", "one-type")
        if err != nil {
            t.Fatal(err)
        }

        _, err = db.schemaFieldKey("the-field", "another-type")
        if err == nil {
            t.Errorf("error not returned, but expected")
        }
    })
}

// TestDB_schemaIndexPrefix validates correctness of schemaIndexPrefix.
func TestDB_schemaIndexPrefix(t *testing.T) {
    db, cleanupFunc := newTestDB(t)
    defer cleanupFunc()

    t.Run("same name", func(t *testing.T) {
        id1, err := db.schemaIndexPrefix("test")
        if err != nil {
            t.Fatal(err)
        }

        id2, err := db.schemaIndexPrefix("test")
        if err != nil {
            t.Fatal(err)
        }

        if id1 != id2 {
            t.Errorf("schema keys for the same field name are not the same: %v, %v", id1, id2)
        }
    })

    t.Run("different names", func(t *testing.T) {
        id1, err := db.schemaIndexPrefix("test1")
        if err != nil {
            t.Fatal(err)
        }

        id2, err := db.schemaIndexPrefix("test2")
        if err != nil {
            t.Fatal(err)
        }

        if id1 == id2 {
            t.Error("schema ids for the same index name are the same, but must not be")
        }
    })
}