github.com/mysteriumnetwork/node@v0.0.0-20240516044423-365054f76801/core/beneficiary/local_storage_test.go (about) 1 /* 2 * Copyright (C) 2023 The "MysteriumNetwork/node" Authors. 3 * 4 * This program is free software: you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation, either version 3 of the License, or 7 * (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17 18 package beneficiary 19 20 import ( 21 "os" 22 "testing" 23 24 "github.com/mysteriumnetwork/node/core/storage/boltdb" 25 "github.com/stretchr/testify/assert" 26 ) 27 28 func TestLocalBeneficiaryStorage(t *testing.T) { 29 // given: 30 dir, err := os.MkdirTemp("/tmp", "mysttest") 31 assert.NoError(t, err) 32 33 defer os.RemoveAll(dir) 34 db, err := boltdb.NewStorage(dir) 35 assert.NoError(t, err) 36 localBeneficiaryStorage := NewAddressStorage(db) 37 38 // when 39 _, err = localBeneficiaryStorage.Address("random") 40 assert.Error(t, err) 41 42 // when 43 assert.NoError(t, localBeneficiaryStorage.Save("0xaA11111111111111111111111111111111111111", "0xaaa3333333333333333333333333333333333333")) 44 assert.NoError(t, localBeneficiaryStorage.Save("0x2222222222222222222222222222222222222222", "0x6666666666666666666666666666666666666666")) 45 46 addr, err := localBeneficiaryStorage.Address("0xaa11111111111111111111111111111111111111") 47 assert.NoError(t, err) 48 assert.Equal(t, "0xaaa3333333333333333333333333333333333333", addr) 49 50 addr, err = localBeneficiaryStorage.Address("0x2222222222222222222222222222222222222222") 51 assert.NoError(t, err) 52 assert.Equal(t, "0x6666666666666666666666666666666666666666", addr) 53 }