aboutsummaryrefslogtreecommitdiff
path: root/ber/obj_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'ber/obj_test.go')
-rw-r--r--ber/obj_test.go60
1 files changed, 37 insertions, 23 deletions
diff --git a/ber/obj_test.go b/ber/obj_test.go
index abe6832..baf5c7c 100644
--- a/ber/obj_test.go
+++ b/ber/obj_test.go
@@ -5,34 +5,48 @@ import (
"testing"
)
-func testBase128(t *testing.T, n int, e []byte) {
- a := base128(n)
- if !bytes.Equal(a, e) {
- t.Error("Base128", n, "expexted", e, "got", a)
- }
+type base128Test struct {
+ in int
+ out []byte
}
-func TestBase128(t *testing.T) {
- testBase128(t, 643, []byte{0x85, 0x03})
- testBase128(t, 113549, []byte{0x86, 0xF7, 0x0D})
- testBase128(t, 49152, []byte{0x83, 0x80, 0x00})
+var base128TestData = []base128Test{
+ {643, []byte{0x85, 0x03}},
+ {113549, []byte{0x86, 0xF7, 0x0D}},
+ {49152, []byte{0x83, 0x80, 0x00}},
}
-func testObj(t *testing.T, o []int, e []byte) {
- a := marshalObj(o)
- if !bytes.Equal(a, e) {
- t.Error("Obj", o, "expexted", e, "got", a)
+func TestBase128(t *testing.T) {
+ for _, b := range base128TestData {
+ a := base128(b.in)
+ if !bytes.Equal(a, b.out) {
+ t.Error("Base128", b.in, "expected", b.out, "got", a)
+ }
}
}
-func TestObj(t *testing.T) {
- testObj(t, []int{1, 3, 12, 0, 218},
- []byte{0x2B, 0x0C, 0x00, 0x81, 0x5A})
- testObj(t, []int{1, 3, 12, 0, 285, 200},
- []byte{0x2B, 0x0C, 0x00, 0x82, 0x1D, 0x81, 0x48})
- testObj(t, []int{}, []byte{})
- testObj(t, []int{0, 39}, []byte{0x27})
- testObj(t, []int{1, 39}, []byte{0x4f})
- testObj(t, []int{1, 40}, []byte{})
- testObj(t, []int{2, 40}, []byte{0x78})
+type oidTest struct {
+ oid OID
+ out []byte
+}
+
+var oidTestData = []oidTest{
+ {OID{1, 3, 12, 0, 218},
+ []byte{0x2B, 0x0C, 0x00, 0x81, 0x5A}},
+ {OID{1, 3, 12, 0, 285, 200},
+ []byte{0x2B, 0x0C, 0x00, 0x82, 0x1D, 0x81, 0x48}},
+ {OID{}, []byte{}},
+ {OID{0, 39}, []byte{0x27}},
+ {OID{1, 39}, []byte{0x4f}},
+ {OID{1, 40}, []byte{}},
+ {OID{2, 40}, []byte{0x78}},
+}
+
+func TestOID(t *testing.T) {
+ for _, o := range oidTestData {
+ a := marshalOID(o.oid)
+ if !bytes.Equal(a, o.out) {
+ t.Error("OID", o.oid, "expected", o.out, "got", a)
+ }
+ }
}