Skip to content

Commit

Permalink
chore: add tests for parser registration
Browse files Browse the repository at this point in the history
Signed-off-by: Frederick F. Kautz IV <frederick@testifysec.com>
  • Loading branch information
fkautz committed Jun 5, 2024
1 parent f481817 commit 6aae5dd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions pkg/metadatastorage/attestationcollection/parser_registry_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
package attestationcollection

import (
"context"
"encoding/json"
"testing"

"github.com/in-toto/archivista/ent"
"github.com/stretchr/testify/assert"
)

func TestRegister(t *testing.T) {
// Define a mock parser function
mockParser := func(ctx context.Context, tx *ent.Tx, attestation *ent.Attestation, attestationType string, message json.RawMessage) error {
return nil
}

// Register the mock parser
Register("mockType", mockParser)

// Check if the parser is registered
registeredParser, exists := registeredParsers["mockType"]
var typedParser AttestationParser = mockParser
assert.True(t, exists, "Parser should be registered")
assert.IsType(t, typedParser, registeredParser, "Registered parser should match the mock parser")
}

0 comments on commit 6aae5dd

Please sign in to comment.