x/model: test UnmarshalText safe copy

This commit is contained in:
Blake Mizerany 2024-04-07 21:30:24 -07:00
parent ab9e476551
commit a292cde2f3
2 changed files with 38 additions and 0 deletions

View File

@ -56,3 +56,28 @@ func TestDigestString(t *testing.T) {
}
}
}
func TestDigestUnmarshalText(t *testing.T) {
const testDigest = "sha256-1234"
t.Run("UnmarshalText (into Valid)", func(t *testing.T) {
d := ParseDigest(testDigest)
if !d.IsValid() {
panic("invalid test")
}
if err := d.UnmarshalText(nil); err == nil {
t.Errorf("UnmarshalText on valid Digest did not return error")
}
if d.String() != testDigest {
t.Errorf("UnmarshalText on valid Digest changed Digest: %q", d.String())
}
})
t.Run("UnmarshalText make safe copy", func(t *testing.T) {
data := []byte(testDigest)
var d Digest
d.UnmarshalText(data)
data[0] = 'x'
if d.String() != testDigest {
t.Errorf("UnmarshalText did not make a safe copy")
}
})
}

View File

@ -443,6 +443,19 @@ func TestNameTextMarshal(t *testing.T) {
t.Errorf("MarshalText allocs = %v; want <= 1", allocs)
}
})
t.Run("UnmarshalTest makes safe copy", func(t *testing.T) {
// UnmarshalText should make a copy of the data.
data := []byte("mistral:latest+Q4_0")
p := Name{}
if err := p.UnmarshalText(data); err != nil {
t.Fatal(err)
}
data[0] = 'x'
if p.String() != "mistral:latest+Q4_0" {
t.Errorf("UnmarshalText() did not make a copy")
}
})
}
func TestSQL(t *testing.T) {