From e4599334cf434f65cd49f92b604546acd39d4c39 Mon Sep 17 00:00:00 2001 From: Rasmus Dahlberg Date: Tue, 26 Apr 2022 16:52:52 +0200 Subject: add url parsing for get-requests with input Pair-programmed with ln5. --- pkg/requests/requests_test.go | 157 ++++++++++++++++++------------------------ 1 file changed, 67 insertions(+), 90 deletions(-) (limited to 'pkg/requests/requests_test.go') diff --git a/pkg/requests/requests_test.go b/pkg/requests/requests_test.go index 691507a..ccbd8e9 100644 --- a/pkg/requests/requests_test.go +++ b/pkg/requests/requests_test.go @@ -21,36 +21,30 @@ func TestLeafToASCII(t *testing.T) { } } -func TestLeavesToASCII(t *testing.T) { - desc := "valid" - buf := bytes.NewBuffer(nil) - if err := validLeaves(t).ToASCII(buf); err != nil { - t.Fatalf("got error true but wanted false in test %q: %v", desc, err) - } - if got, want := string(buf.Bytes()), validLeavesASCII(t); got != want { - t.Errorf("got leaves request\n\t%v\nbut wanted\n\t%v\nin test %q\n", got, want, desc) +func TestLeavesToURL(t *testing.T) { + url := types.EndpointGetLeaves.Path("https://log.sigsum.com/sigsum/v0") + req := Leaves{1, 2} + want := url + "1/2" + if got := req.ToURL(url); got != want { + t.Errorf("got url %s but wanted %s", got, want) } } -func TestInclusionProofToASCII(t *testing.T) { - desc := "valid" - buf := bytes.NewBuffer(nil) - if err := validInclusionProof(t).ToASCII(buf); err != nil { - t.Fatalf("got error true but wanted false in test %q: %v", desc, err) - } - if got, want := string(buf.Bytes()), validInclusionProofASCII(t); got != want { - t.Errorf("got inclusion proof request\n\t%v\nbut wanted\n\t%v\nin test %q\n", got, want, desc) +func TestInclusionProofToURL(t *testing.T) { + url := types.EndpointGetInclusionProof.Path("https://log.sigsum.com/sigsum/v0") + req := InclusionProof{1, types.Hash{}} + want := url + "1/0000000000000000000000000000000000000000000000000000000000000000" + if got := req.ToURL(url); got != want { + t.Errorf("got url %s but wanted %s", got, want) } } -func TestConsistencyProofToASCII(t *testing.T) { - desc := "valid" - buf := bytes.NewBuffer(nil) - if err := validConsistencyProof(t).ToASCII(buf); err != nil { - t.Fatalf("got error true but wanted false in test %q: %v", desc, err) - } - if got, want := string(buf.Bytes()), validConsistencyProofASCII(t); got != want { - t.Errorf("got consistency proof request\n\t%v\nbut wanted\n\t%v\nin test %q\n", got, want, desc) +func TestConsistencyProofToURL(t *testing.T) { + url := types.EndpointGetConsistencyProof.Path("https://log.sigsum.com/sigsum/v0") + req := ConsistencyProof{1, 2} + want := url + "1/2" + if got := req.ToURL(url); got != want { + t.Errorf("got url %s but wanted %s", got, want) } } @@ -100,107 +94,90 @@ func TestLeafFromASCII(t *testing.T) { } } -func TestLeavesFromASCII(t *testing.T) { +func TestLeavesFromURL(t *testing.T) { for _, table := range []struct { - desc string - serialized io.Reader - wantErr bool - want *Leaves + desc string + input string + want Leaves + wantErr bool }{ - { - desc: "invalid: not a leaves request (unexpected key-value pair)", - serialized: bytes.NewBuffer( - append([]byte(validLeavesASCII(t)), - []byte("key=4")...), - ), - wantErr: true, - }, - { - desc: "valid", - serialized: bytes.NewBuffer([]byte(validLeavesASCII(t))), - want: validLeaves(t), - }, + {"invalid: not enough parameters", "some-url", Leaves{}, true}, + {"invalid: start size has a leading sign", "some-url/+1/2", Leaves{}, true}, + {"invalid: start size is empty", "some-url//2", Leaves{}, true}, + {"invalid: end size is empty", "some-url/1/", Leaves{}, true}, + {"valid", "some-url/1/2", Leaves{1, 2}, false}, } { var req Leaves - err := req.FromASCII(table.serialized) + err := req.FromURL(table.input) if got, want := err != nil, table.wantErr; got != want { - t.Errorf("got error %v but wanted %v in test %q: %v", got, want, table.desc, err) + t.Errorf("%s: got error %v but wanted %v: %v", table.desc, got, want, err) } if err != nil { continue } - if got, want := &req, table.want; !reflect.DeepEqual(got, want) { - t.Errorf("got leaves request\n\t%v\nbut wanted\n\t%v\nin test %q\n", got, want, table.desc) + + if got, want := req, table.want; !reflect.DeepEqual(got, want) { + t.Errorf("%s: got leaves request\n%v\nbut wanted\n%v", table.desc, got, want) } } } -func TestInclusionProofFromASCII(t *testing.T) { +func TestInclusionProofFromURL(t *testing.T) { + badHex := "F000000000000000000000000000000000000000000000000000000000000000" + shortHex := "00ff" + zeroHash := "0000000000000000000000000000000000000000000000000000000000000000" for _, table := range []struct { - desc string - serialized io.Reader - wantErr bool - want *InclusionProof + desc string + input string + want InclusionProof + wantErr bool }{ - { - desc: "invalid: not an inclusion proof request (unexpected key-value pair)", - serialized: bytes.NewBuffer(append( - []byte(validInclusionProofASCII(t)), - []byte("key=4")...), - ), - wantErr: true, - }, - { - desc: "valid", - serialized: bytes.NewBuffer([]byte(validInclusionProofASCII(t))), - want: validInclusionProof(t), - }, + {"invalid: not enough parameters", "some-url", InclusionProof{}, true}, + {"invalid: tree size has a leading sign", "some-url/+1/" + zeroHash, InclusionProof{}, true}, + {"invalid: tree size is empty", "some-url//" + zeroHash, InclusionProof{}, true}, + {"invalid: leaf hash is not lower-case hex", "some-url/1/" + badHex, InclusionProof{}, true}, + {"invalid: leaf hash is hex but too short", "some-url/1/" + shortHex, InclusionProof{}, true}, + {"valid", "some-url/1/" + zeroHash, InclusionProof{1, types.Hash{}}, false}, } { var req InclusionProof - err := req.FromASCII(table.serialized) + err := req.FromURL(table.input) if got, want := err != nil, table.wantErr; got != want { - t.Errorf("got error %v but wanted %v in test %q: %v", got, want, table.desc, err) + t.Errorf("%s: got error %v but wanted %v: %v", table.desc, got, want, err) } if err != nil { continue } - if got, want := &req, table.want; !reflect.DeepEqual(got, want) { - t.Errorf("got inclusion proof request\n\t%v\nbut wanted\n\t%v\nin test %q\n", got, want, table.desc) + + if got, want := req, table.want; !reflect.DeepEqual(got, want) { + t.Errorf("%s: got inclusion proof request\n%v\nbut wanted\n%v", table.desc, got, want) } } } -func TestConsistencyProofFromASCII(t *testing.T) { +func TestConsistencyProofFromURL(t *testing.T) { for _, table := range []struct { - desc string - serialized io.Reader - wantErr bool - want *ConsistencyProof + desc string + input string + want ConsistencyProof + wantErr bool }{ - { - desc: "invalid: not a consistency proof request (unexpected key-value pair)", - serialized: bytes.NewBuffer( - append([]byte(validConsistencyProofASCII(t)), - []byte("tree_size=4")...), - ), - wantErr: true, - }, - { - desc: "valid", - serialized: bytes.NewBuffer([]byte(validConsistencyProofASCII(t))), - want: validConsistencyProof(t), - }, + {"invalid: not enough parameters", "some-url", ConsistencyProof{}, true}, + {"invalid: old size has a leading sign", "some-url/+1/2", ConsistencyProof{}, true}, + {"invalid: old size is empty", "some-url//2", ConsistencyProof{}, true}, + {"invalid: new size is empty", "some-url/1/", ConsistencyProof{}, true}, + {"valid", "some-url/1/2", ConsistencyProof{1, 2}, false}, } { var req ConsistencyProof - err := req.FromASCII(table.serialized) + err := req.FromURL(table.input) if got, want := err != nil, table.wantErr; got != want { - t.Errorf("got error %v but wanted %v in test %q: %v", got, want, table.desc, err) + t.Errorf("%s: got error %v but wanted %v: %v", table.desc, got, want, err) } if err != nil { continue } - if got, want := &req, table.want; !reflect.DeepEqual(got, want) { - t.Errorf("got consistency proof request\n\t%v\nbut wanted\n\t%v\nin test %q\n", got, want, table.desc) + + if got, want := req, table.want; !reflect.DeepEqual(got, want) { + t.Errorf("%s: got consistency proof request\n%v\nbut wanted\n%v", table.desc, got, want) } } } -- cgit v1.2.3 From 9dc0caf031f33f629f6c7e237a0c1539373431f1 Mon Sep 17 00:00:00 2001 From: Linus Nordberg Date: Thu, 28 Apr 2022 16:19:27 +0200 Subject: use a more appropriate URL for testing sigsum dot com is not a thing. --- pkg/requests/requests_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pkg/requests/requests_test.go') diff --git a/pkg/requests/requests_test.go b/pkg/requests/requests_test.go index ccbd8e9..c8104ff 100644 --- a/pkg/requests/requests_test.go +++ b/pkg/requests/requests_test.go @@ -22,7 +22,7 @@ func TestLeafToASCII(t *testing.T) { } func TestLeavesToURL(t *testing.T) { - url := types.EndpointGetLeaves.Path("https://log.sigsum.com/sigsum/v0") + url := types.EndpointGetLeaves.Path("https://poc.sigsum.org/sigsum/v0") req := Leaves{1, 2} want := url + "1/2" if got := req.ToURL(url); got != want { @@ -31,7 +31,7 @@ func TestLeavesToURL(t *testing.T) { } func TestInclusionProofToURL(t *testing.T) { - url := types.EndpointGetInclusionProof.Path("https://log.sigsum.com/sigsum/v0") + url := types.EndpointGetInclusionProof.Path("https://poc.sigsum.org/sigsum/v0") req := InclusionProof{1, types.Hash{}} want := url + "1/0000000000000000000000000000000000000000000000000000000000000000" if got := req.ToURL(url); got != want { @@ -40,7 +40,7 @@ func TestInclusionProofToURL(t *testing.T) { } func TestConsistencyProofToURL(t *testing.T) { - url := types.EndpointGetConsistencyProof.Path("https://log.sigsum.com/sigsum/v0") + url := types.EndpointGetConsistencyProof.Path("https://poc.sigsum.org/sigsum/v0") req := ConsistencyProof{1, 2} want := url + "1/2" if got := req.ToURL(url); got != want { -- cgit v1.2.3