- Updated io.Medium interface with Open() and Create() methods to support streaming. - Migrated pkg/build, pkg/build/builders, and pkg/build/signing to use io.Medium. - Added FS field to build.Config and updated build.Builder interface. - Refactored checksum and archive logic to use io.Medium streaming. - Updated pkg/release and pkg/build/buildcmd to use io.Local. - Updated unit tests to match new signatures.
34 lines
732 B
Go
34 lines
732 B
Go
package signing
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/host-uk/core/pkg/io"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGPGSigner_Good_Name(t *testing.T) {
|
|
s := NewGPGSigner("ABCD1234")
|
|
assert.Equal(t, "gpg", s.Name())
|
|
}
|
|
|
|
func TestGPGSigner_Good_Available(t *testing.T) {
|
|
s := NewGPGSigner("ABCD1234")
|
|
_ = s.Available()
|
|
}
|
|
|
|
func TestGPGSigner_Bad_NoKey(t *testing.T) {
|
|
s := NewGPGSigner("")
|
|
assert.False(t, s.Available())
|
|
}
|
|
|
|
func TestGPGSigner_Sign_Bad(t *testing.T) {
|
|
fs := io.Local
|
|
t.Run("fails when no key", func(t *testing.T) {
|
|
s := NewGPGSigner("")
|
|
err := s.Sign(context.Background(), fs, "test.txt")
|
|
assert.Error(t, err)
|
|
assert.Contains(t, err.Error(), "not available or key not configured")
|
|
})
|
|
}
|