mirror of
https://github.com/clearlinux/rkt.git
synced 2026-06-16 02:05:48 +00:00
9685f37575
Inspired by a similar change in the Kubernetes project [1], this changes the copyright header to the more generic "The rkt Authors" rather than "CoreOS, Inc.", which is only sometimes correct. https://github.com/GoogleCloudPlatform/kubernetes/commit/6b3a6e6b983f967c88d14d26542ec6e30c49ebd3
67 lines
1.7 KiB
Go
67 lines
1.7 KiB
Go
// Copyright 2014 The rkt Authors
|
|
//
|
|
// 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.
|
|
|
|
package store
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestNewRemote(t *testing.T) {
|
|
const (
|
|
u1 = "https://example.com"
|
|
u2 = "https://foo.com"
|
|
data = "asdf"
|
|
)
|
|
dir, err := ioutil.TempDir("", "")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
defer os.RemoveAll(dir)
|
|
s, err := NewStore(dir)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
// Create our first Remote, and simulate Store() to create row in the table
|
|
na := NewRemote(u1, "")
|
|
na.BlobKey = data
|
|
s.WriteRemote(na)
|
|
|
|
// Get a new remote w the same parameters, reading from table should be fine
|
|
nb, ok, err := s.GetRemote(u1)
|
|
if err != nil {
|
|
t.Fatalf("unexpected error reading index: %v", err)
|
|
}
|
|
if !ok {
|
|
t.Fatalf("unexpected index not found")
|
|
}
|
|
if nb.BlobKey != data {
|
|
t.Fatalf("bad data returned from store: got %v, want %v", nb.BlobKey, data)
|
|
}
|
|
|
|
// Get a remote with a different URI
|
|
nc, ok, err := s.GetRemote(u2)
|
|
// Should get an error, since the URI shouldn't be present in the table
|
|
if ok {
|
|
t.Fatalf("unexpected index found")
|
|
}
|
|
// Remote shouldn't be populated
|
|
if nc.BlobKey != "" {
|
|
t.Errorf("unexpected blob: got %v", nc.BlobKey)
|
|
}
|
|
}
|