-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add tests for parser registration
Signed-off-by: Frederick F. Kautz IV <frederick@testifysec.com>
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
26 changes: 26 additions & 0 deletions
26
pkg/metadatastorage/attestationcollection/parser_registry_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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") | ||
} |