aboutsummaryrefslogtreecommitdiff
path: root/repo_test.go
diff options
context:
space:
mode:
authorGravatar Runxi Yu2025-11-16 00:00:00 +0000
committerGravatar Runxi Yu2025-11-16 00:00:00 +0000
commitedd37bb4fd3aa08eda39303fd5628a554a8c3aeb (patch)
tree9b438c2e0b64f880cc57c90446fcec8768e7730b /repo_test.go
parentMove config to its own package (diff)
signature
Separate stored object types from types that the user is expected to construct.
Diffstat (limited to 'repo_test.go')
-rw-r--r--repo_test.go20
1 files changed, 10 insertions, 10 deletions
diff --git a/repo_test.go b/repo_test.go
index 4f43f33d..b1b48df4 100644
--- a/repo_test.go
+++ b/repo_test.go
@@ -37,9 +37,9 @@ func TestOpenRepositoryAndLooseRead(t *testing.T) {
if err != nil {
t.Fatalf("looseRead error: %v", err)
}
- blob, ok := obj.(*Blob)
+ blob, ok := obj.(*StoredBlob)
if !ok {
- t.Fatalf("expected Blob, got %T", obj)
+ t.Fatalf("expected StoredBlob, got %T", obj)
}
if string(blob.Data) != "loose blob payload" {
t.Fatalf("blob data mismatch: %q", blob.Data)
@@ -225,8 +225,8 @@ func TestWriteLooseObjectAllTypes(t *testing.T) {
if err != nil {
t.Fatalf("ReadObject Blob error: %v", err)
}
- if rb, ok := readBlob.(*Blob); !ok {
- t.Fatalf("expected Blob, got %T", readBlob)
+ if rb, ok := readBlob.(*StoredBlob); !ok {
+ t.Fatalf("expected StoredBlob, got %T", readBlob)
} else if string(rb.Data) != "test blob data" {
t.Fatalf("blob data mismatch: %q", rb.Data)
}
@@ -245,8 +245,8 @@ func TestWriteLooseObjectAllTypes(t *testing.T) {
if err != nil {
t.Fatalf("ReadObject Tree error: %v", err)
}
- if rt, ok := readTree.(*Tree); !ok {
- t.Fatalf("expected Tree, got %T", readTree)
+ if rt, ok := readTree.(*StoredTree); !ok {
+ t.Fatalf("expected StoredTree, got %T", readTree)
} else if len(rt.Entries) != 1 {
t.Fatalf("tree entries mismatch: %d", len(rt.Entries))
}
@@ -276,8 +276,8 @@ func TestWriteLooseObjectAllTypes(t *testing.T) {
if err != nil {
t.Fatalf("ReadObject Commit error: %v", err)
}
- if rc, ok := readCommit.(*Commit); !ok {
- t.Fatalf("expected Commit, got %T", readCommit)
+ if rc, ok := readCommit.(*StoredCommit); !ok {
+ t.Fatalf("expected StoredCommit, got %T", readCommit)
} else if rc.Tree != treeID {
t.Fatalf("commit tree mismatch")
}
@@ -303,8 +303,8 @@ func TestWriteLooseObjectAllTypes(t *testing.T) {
if err != nil {
t.Fatalf("ReadObject Tag error: %v", err)
}
- if rtag, ok := readTag.(*Tag); !ok {
- t.Fatalf("expected Tag, got %T", readTag)
+ if rtag, ok := readTag.(*StoredTag); !ok {
+ t.Fatalf("expected StoredTag, got %T", readTag)
} else if rtag.Target != commitID {
t.Fatalf("tag target mismatch")
}