mirror of https://github.com/dsoprea/go-exif.git
67 lines
1.3 KiB
Go
67 lines
1.3 KiB
Go
package exifundefined
|
|
|
|
import (
|
|
"bytes"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/dsoprea/go-logging"
|
|
|
|
"github.com/dsoprea/go-exif/v3/common"
|
|
)
|
|
|
|
func TestTagExifA300FileSource_String(t *testing.T) {
|
|
ut := TagExifA300FileSource(0x1234)
|
|
|
|
s := ut.String()
|
|
if s != "0x00001234" {
|
|
t.Fatalf("String not correct: [%s]", s)
|
|
}
|
|
}
|
|
|
|
func TestCodecExifA300FileSource_Encode(t *testing.T) {
|
|
ut := TagExifA300FileSource(0x1234)
|
|
|
|
codec := CodecExifA300FileSource{}
|
|
|
|
encoded, unitCount, err := codec.Encode(ut, exifcommon.TestDefaultByteOrder)
|
|
log.PanicIf(err)
|
|
|
|
expectedEncoded := []byte{0, 0, 0x12, 0x34}
|
|
|
|
if bytes.Equal(encoded, expectedEncoded) != true {
|
|
exifcommon.DumpBytesClause(encoded)
|
|
|
|
t.Fatalf("Encoding not correct.")
|
|
} else if unitCount != 1 {
|
|
t.Fatalf("Unit-count not correct: (%d)", unitCount)
|
|
}
|
|
}
|
|
|
|
func TestCodecExifA300FileSource_Decode(t *testing.T) {
|
|
expectedUt := TagExifA300FileSource(0x1234)
|
|
|
|
encoded := []byte{0, 0, 0x12, 0x34}
|
|
|
|
rawValueOffset := encoded
|
|
|
|
valueContext := exifcommon.NewValueContext(
|
|
"",
|
|
0,
|
|
1,
|
|
0,
|
|
rawValueOffset,
|
|
nil,
|
|
exifcommon.TypeUndefined,
|
|
exifcommon.TestDefaultByteOrder)
|
|
|
|
codec := CodecExifA300FileSource{}
|
|
|
|
decoded, err := codec.Decode(valueContext)
|
|
log.PanicIf(err)
|
|
|
|
if reflect.DeepEqual(decoded, expectedUt) != true {
|
|
t.Fatalf("Decoded struct not correct.")
|
|
}
|
|
}
|