aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/network/stream/intervals/store_test.go
blob: a36814b71741fcde5cadcf3d05aff69d4ba32fe8 (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
// 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 intervals

import (
    "testing"

    "github.com/ethereum/go-ethereum/swarm/state"
)

// TestInmemoryStore tests basic functionality of InmemoryStore.
func TestInmemoryStore(t *testing.T) {
    testStore(t, state.NewInmemoryStore())
}

// testStore is a helper function to test various Store implementations.
func testStore(t *testing.T, s state.Store) {
    key1 := "key1"
    i1 := NewIntervals(0)
    i1.Add(10, 20)
    if err := s.Put(key1, i1); err != nil {
        t.Fatal(err)
    }
    i := &Intervals{}
    err := s.Get(key1, i)
    if err != nil {
        t.Fatal(err)
    }
    if i.String() != i1.String() {
        t.Errorf("expected interval %s, got %s", i1, i)
    }

    key2 := "key2"
    i2 := NewIntervals(0)
    i2.Add(10, 20)
    if err := s.Put(key2, i2); err != nil {
        t.Fatal(err)
    }
    err = s.Get(key2, i)
    if err != nil {
        t.Fatal(err)
    }
    if i.String() != i2.String() {
        t.Errorf("expected interval %s, got %s", i2, i)
    }

    if err := s.Delete(key1); err != nil {
        t.Fatal(err)
    }
    if err := s.Get(key1, i); err != state.ErrNotFound {
        t.Errorf("expected error %v, got %s", state.ErrNotFound, err)
    }
    if err := s.Get(key2, i); err != nil {
        t.Errorf("expected error %v, got %s", nil, err)
    }

    if err := s.Delete(key2); err != nil {
        t.Fatal(err)
    }
    if err := s.Get(key2, i); err != state.ErrNotFound {
        t.Errorf("expected error %v, got %s", state.ErrNotFound, err)
    }
}