mirror of
https://github.com/langgenius/dify-plugin-daemon.git
synced 2026-07-22 01:35:24 -04:00
888ad788bc
* refactor: introduce local plugin control panel and cleanup environment setup process * fix: args * refactor: new local runtime * temp: stash work for refactor on RemotePluginServer * refactor: unify local runtime lifetime and sperate init environment process * chore: add missing files * stash * refactor: local plugin lifetime control * refactor: complete installation process of control panel * refactor: adapt service layer to new controlpanel * refactor: pluginManager.Install * fix: add routine wrap to InstallServerless, avoid blocking main thread * feat: reinstall serverless runtime * chore: add comments to Reinstall and update confusing naming * refactor: unify install plugin service * refactor: add labels to debugging runtime * refactor: add getters to plugin manager * refactor: split install service to decode/install_task/install service * ??? * refactor: adapt controllers * refactor: session write * refactor: session runtime * Refine install task orchestration (#501) * refactor: installing task * refactor cluster management, decouple lifetime management and cluster * fix cli test command * fix: cleanup TODO comments and implement GracefulStop for instance * feat: add logger to control panel * fix: multiple nil references * refactor: better lifetime control * refactor: better cycle interval * fix(LocalPluginRuntime): prevent returning err when it's not error * fix: avoid adding empty PipExtraArgs * fix: missing errors in Environment init * fix: add truncateMessage to avoid db explosion * cleanup: better lifecycle management * fix: init status at the beginning of installation * optimize: GracefulStop for pluginInstance * refactor: tests * refactor: centralize routine labels (#504) * cleanup: RoutineKey * fix: init routine pool * fix: correctly handle cluster register error * fix: memory leak * fix: add \n to instance write * fix(installer.go): set success to true after succeed for defer func * refactor * fix: missing cwd in testutils * fix: scaleup default runtime nums to 1 when testing * fix: localruntime appconfig in testing module * Update internal/core/local_runtime/load_balancing.go Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * fix: more efficiency implement in installer_local.go * fix: returns after failing in onDebuggingRuntimeDisconnected * fix: returns after failing in onDebuggingRuntimeDisconnected * fix: splits tests * refactor: naming * refactor: manifest.VersionX * fix: adapt SetDefault to tests * fix: enforce use constants in DBType * fix: generate * fix: linter * cleanup tests * refactor: change package to * cleanup: useless codes * Update internal/cluster/plugin.go Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com> * cleanup * refactor: decouple connection_key management from debugging_time * refactor: confused naming * feat: recycle resources to adapt to https://github.com/langgenius/dify-plugin-daemon/pull/500 * refactor: confusing redirecting * fix: support get serverless runtime * fix: race condition in Launching * fix: avoid ManifestValidate in first step of debugging handshake * fix: adding ReleaseAllLocks to finalizers * wtf: what a beautiful code * refactor: rename Stream.Async to Stream.Process * fix: kill process if daed instance was detected * fix: correctly handle failures * fix: consistence of difference interfaces * fix: add stacktrace to panic * fix: only trigger once event * fix: ensure plugin runtime was shutdown * feat: cleanup install tasks * fix: add scale logs --------- Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
540 lines
15 KiB
Go
540 lines
15 KiB
Go
package plugin_packager
|
|
|
|
import (
|
|
"crypto/rsa"
|
|
"embed"
|
|
"fmt"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/langgenius/dify-plugin-daemon/pkg/plugin_packager/decoder"
|
|
"github.com/langgenius/dify-plugin-daemon/pkg/plugin_packager/packager"
|
|
"github.com/langgenius/dify-plugin-daemon/pkg/plugin_packager/signer"
|
|
"github.com/langgenius/dify-plugin-daemon/pkg/plugin_packager/signer/withkey"
|
|
"github.com/langgenius/dify-plugin-daemon/pkg/utils/encryption"
|
|
)
|
|
|
|
//go:embed testdata/manifest.yaml
|
|
var manifest []byte
|
|
|
|
//go:embed testdata/neko.yaml
|
|
var neko []byte
|
|
|
|
//go:embed testdata/.difyignore
|
|
var dify_ignore []byte
|
|
|
|
//go:embed testdata/ignored
|
|
var ignored []byte
|
|
|
|
//go:embed testdata/_assets/test.svg
|
|
var test_svg []byte
|
|
|
|
//go:embed testdata/keys
|
|
var keys embed.FS
|
|
|
|
// createMinimalPlugin creates a minimal test plugin and returns the zip file
|
|
func createMinimalPlugin(t *testing.T) []byte {
|
|
// create a temp directory
|
|
tempDir := t.TempDir()
|
|
|
|
// create basic files
|
|
if err := os.WriteFile(filepath.Join(tempDir, "manifest.yaml"), manifest, 0644); err != nil {
|
|
t.Errorf("failed to write manifest: %s", err.Error())
|
|
return nil
|
|
}
|
|
|
|
if err := os.WriteFile(filepath.Join(tempDir, "neko.yaml"), neko, 0644); err != nil {
|
|
t.Errorf("failed to write neko: %s", err.Error())
|
|
return nil
|
|
}
|
|
|
|
// create _assets directory and files
|
|
if err := os.MkdirAll(filepath.Join(tempDir, "_assets"), 0755); err != nil {
|
|
t.Errorf("failed to create _assets directory: %s", err.Error())
|
|
return nil
|
|
}
|
|
|
|
if err := os.WriteFile(filepath.Join(tempDir, "_assets/test.svg"), test_svg, 0644); err != nil {
|
|
t.Errorf("failed to write test.svg: %s", err.Error())
|
|
return nil
|
|
}
|
|
|
|
// create decoder
|
|
originDecoder, err := decoder.NewFSPluginDecoder(tempDir)
|
|
if err != nil {
|
|
t.Errorf("failed to create decoder: %s", err.Error())
|
|
return nil
|
|
}
|
|
|
|
// create packager
|
|
packager := packager.NewPackager(originDecoder)
|
|
|
|
// pack
|
|
zip, err := packager.Pack(52428800)
|
|
if err != nil {
|
|
t.Errorf("failed to pack: %s", err.Error())
|
|
return nil
|
|
}
|
|
|
|
return zip
|
|
}
|
|
|
|
func TestPackagerAndVerifier(t *testing.T) {
|
|
// create a temp directory
|
|
tempDir := t.TempDir()
|
|
|
|
// create manifest
|
|
if err := os.WriteFile(filepath.Join(tempDir, "manifest.yaml"), manifest, 0644); err != nil {
|
|
t.Errorf("failed to write manifest: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
if err := os.WriteFile(filepath.Join(tempDir, "neko.yaml"), neko, 0644); err != nil {
|
|
t.Errorf("failed to write neko: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// create .difyignore
|
|
if err := os.WriteFile(filepath.Join(tempDir, ".difyignore"), dify_ignore, 0644); err != nil {
|
|
t.Errorf("failed to write .difyignore: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// create ignored
|
|
if err := os.WriteFile(filepath.Join(tempDir, "ignored"), ignored, 0644); err != nil {
|
|
t.Errorf("failed to write ignored: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// create ignored_paths
|
|
if err := os.MkdirAll(filepath.Join(tempDir, "ignored_paths"), 0755); err != nil {
|
|
t.Errorf("failed to create ignored_paths directory: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// create ignored_paths/ignored
|
|
if err := os.WriteFile(filepath.Join(tempDir, "ignored_paths/ignored"), ignored, 0644); err != nil {
|
|
t.Errorf("failed to write ignored_paths/ignored: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
if err := os.MkdirAll(filepath.Join(tempDir, "_assets"), 0755); err != nil {
|
|
t.Errorf("failed to create _assets directory: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
if err := os.WriteFile(filepath.Join(tempDir, "_assets/test.svg"), test_svg, 0644); err != nil {
|
|
t.Errorf("failed to write test.svg: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
originDecoder, err := decoder.NewFSPluginDecoder(tempDir)
|
|
if err != nil {
|
|
t.Errorf("failed to create decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// walk
|
|
err = originDecoder.Walk(func(filename string, dir string) error {
|
|
if filename == "ignored" {
|
|
return fmt.Errorf("should not walk into ignored")
|
|
}
|
|
if strings.HasPrefix(filename, "ignored_paths") {
|
|
return fmt.Errorf("should not walk into ignored_paths")
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
t.Errorf("failed to walk: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// check assets
|
|
assets, err := originDecoder.Assets()
|
|
if err != nil {
|
|
t.Errorf("failed to get assets: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
if assets["test.svg"] == nil {
|
|
t.Errorf("should have test.svg asset, got %v", assets)
|
|
return
|
|
}
|
|
|
|
packager := packager.NewPackager(originDecoder)
|
|
|
|
// pack
|
|
zip, err := packager.Pack(52428800)
|
|
if err != nil {
|
|
t.Errorf("failed to pack: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// sign
|
|
signed, err := signer.SignPlugin(zip, &decoder.Verification{
|
|
AuthorizedCategory: decoder.AUTHORIZED_CATEGORY_LANGGENIUS,
|
|
})
|
|
if err != nil {
|
|
t.Errorf("failed to sign: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
signedDecoder, err := decoder.NewZipPluginDecoder(signed)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// check assets
|
|
assets, err = signedDecoder.Assets()
|
|
if err != nil {
|
|
t.Errorf("failed to get assets: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
if assets["test.svg"] == nil {
|
|
t.Errorf("should have test.svg asset, got %v", assets)
|
|
return
|
|
}
|
|
|
|
// verify
|
|
err = decoder.VerifyPlugin(signedDecoder)
|
|
if err != nil {
|
|
t.Errorf("failed to verify: %s", err.Error())
|
|
return
|
|
}
|
|
}
|
|
|
|
func TestWrongSign(t *testing.T) {
|
|
// create a minimal test plugin
|
|
zip := createMinimalPlugin(t)
|
|
if zip == nil {
|
|
return
|
|
}
|
|
|
|
// sign
|
|
signed, err := signer.SignPlugin(zip, &decoder.Verification{
|
|
AuthorizedCategory: decoder.AUTHORIZED_CATEGORY_LANGGENIUS,
|
|
})
|
|
if err != nil {
|
|
t.Errorf("failed to sign: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// modify the signed file, signature is at the end of the file
|
|
signed[len(signed)-1] = 0
|
|
signed[len(signed)-2] = 0
|
|
|
|
// create a new decoder
|
|
signedDecoder, err := decoder.NewZipPluginDecoder(signed)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// verify (expected to fail)
|
|
err = decoder.VerifyPlugin(signedDecoder)
|
|
if err == nil {
|
|
t.Errorf("should fail to verify")
|
|
return
|
|
}
|
|
}
|
|
|
|
// loadPublicKeyFile loads a key file from the embed.FS and returns the public key
|
|
func loadPublicKeyFile(t *testing.T, keyFile string) *rsa.PublicKey {
|
|
keyBytes, err := keys.ReadFile(filepath.Join("testdata/keys", keyFile))
|
|
if err != nil {
|
|
t.Fatalf("failed to read key file: %s", err.Error())
|
|
}
|
|
key, err := encryption.LoadPublicKey(keyBytes)
|
|
if err != nil {
|
|
t.Fatalf("failed to load public key: %s", err.Error())
|
|
}
|
|
return key
|
|
}
|
|
|
|
// loadPrivateKeyFile loads a key file from the embed.FS and returns the private key
|
|
func loadPrivateKeyFile(t *testing.T, keyFile string) *rsa.PrivateKey {
|
|
keyBytes, err := keys.ReadFile(filepath.Join("testdata/keys", keyFile))
|
|
if err != nil {
|
|
t.Fatalf("failed to read key file: %s", err.Error())
|
|
}
|
|
key, err := encryption.LoadPrivateKey(keyBytes)
|
|
if err != nil {
|
|
t.Fatalf("failed to load private key: %s", err.Error())
|
|
}
|
|
return key
|
|
}
|
|
|
|
// extractPublicKey extracts the key file from the embed.FS and returns the file path
|
|
func extractKeyFile(t *testing.T, keyFile string, tmpDir string) string {
|
|
keyBytes, err := keys.ReadFile(filepath.Join("testdata/keys", keyFile))
|
|
if err != nil {
|
|
t.Fatalf("failed to read key file: %s", err.Error())
|
|
}
|
|
keyPath := filepath.Join(tmpDir, keyFile)
|
|
if err := os.WriteFile(keyPath, keyBytes, 0644); err != nil {
|
|
t.Fatalf("failed to write key file: %s", err.Error())
|
|
}
|
|
return keyPath
|
|
}
|
|
|
|
func TestSignPluginWithPrivateKey(t *testing.T) {
|
|
// load public keys from embed.FS
|
|
publicKey1 := loadPublicKeyFile(t, "test_key_pair_1.public.pem")
|
|
publicKey2 := loadPublicKeyFile(t, "test_key_pair_2.public.pem")
|
|
|
|
// load private keys from embed.FS
|
|
privateKey1 := loadPrivateKeyFile(t, "test_key_pair_1.private.pem")
|
|
privateKey2 := loadPrivateKeyFile(t, "test_key_pair_2.private.pem")
|
|
|
|
// create a minimal test plugin
|
|
zip := createMinimalPlugin(t)
|
|
if zip == nil {
|
|
return
|
|
}
|
|
|
|
// sign with private key 1 and create decoder
|
|
signed1, err := withkey.SignPluginWithPrivateKey(zip, &decoder.Verification{
|
|
AuthorizedCategory: decoder.AUTHORIZED_CATEGORY_LANGGENIUS,
|
|
}, privateKey1)
|
|
if err != nil {
|
|
t.Errorf("failed to sign with private key 1: %s", err.Error())
|
|
return
|
|
}
|
|
signedDecoder1, err := decoder.NewZipPluginDecoder(signed1)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// sign with private key 2 and create decoder
|
|
signed2, err := withkey.SignPluginWithPrivateKey(zip, &decoder.Verification{
|
|
AuthorizedCategory: decoder.AUTHORIZED_CATEGORY_LANGGENIUS,
|
|
}, privateKey2)
|
|
if err != nil {
|
|
t.Errorf("failed to sign with private key 2: %s", err.Error())
|
|
return
|
|
}
|
|
signedDecoder2, err := decoder.NewZipPluginDecoder(signed2)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// tamper the signed1 file and create decoder
|
|
modifiedSigned1 := make([]byte, len(signed1))
|
|
copy(modifiedSigned1, signed1)
|
|
modifiedSigned1[len(modifiedSigned1)-10] = 0
|
|
modifiedDecoder1, err := decoder.NewZipPluginDecoder(modifiedSigned1)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// define test cases
|
|
tests := []struct {
|
|
name string
|
|
signedDecoder decoder.PluginDecoder
|
|
publicKeys []*rsa.PublicKey
|
|
expectSuccess bool
|
|
}{
|
|
{
|
|
name: "verify plugin signed with private key 1 using embedded public key (should fail)",
|
|
signedDecoder: signedDecoder1,
|
|
publicKeys: nil, // use embedded public key
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "verify plugin signed with private key 1 using public key 1 (should succeed)",
|
|
signedDecoder: signedDecoder1,
|
|
publicKeys: []*rsa.PublicKey{publicKey1},
|
|
expectSuccess: true,
|
|
},
|
|
{
|
|
name: "verify plugin signed with private key 1 using public key 2 (should fail)",
|
|
signedDecoder: signedDecoder1,
|
|
publicKeys: []*rsa.PublicKey{publicKey2},
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "verify plugin signed with private key 2 using public key 1 (should fail)",
|
|
signedDecoder: signedDecoder2,
|
|
publicKeys: []*rsa.PublicKey{publicKey1},
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "verify plugin signed with private key 2 using public key 2 (should succeed)",
|
|
signedDecoder: signedDecoder2,
|
|
publicKeys: []*rsa.PublicKey{publicKey2},
|
|
expectSuccess: true,
|
|
},
|
|
{
|
|
name: "verify modified plugin signed with private key 1 using public key 1 (should fail)",
|
|
signedDecoder: modifiedDecoder1,
|
|
publicKeys: []*rsa.PublicKey{publicKey1},
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "verify modified plugin signed with private key 1 using public key 2 (should fail)",
|
|
signedDecoder: modifiedDecoder1,
|
|
publicKeys: []*rsa.PublicKey{publicKey2},
|
|
expectSuccess: false,
|
|
},
|
|
}
|
|
|
|
// run test cases
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
var err error
|
|
if tt.publicKeys == nil {
|
|
err = decoder.VerifyPlugin(tt.signedDecoder)
|
|
} else {
|
|
err = decoder.VerifyPluginWithPublicKeys(tt.signedDecoder, tt.publicKeys)
|
|
}
|
|
|
|
if tt.expectSuccess && err != nil {
|
|
t.Errorf("expected success but got error: %s", err.Error())
|
|
}
|
|
if !tt.expectSuccess && err == nil {
|
|
t.Errorf("expected failure but got success")
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestVerifyPluginWithThirdPartyKeys(t *testing.T) {
|
|
// create a temporary directory for the public key files (needed for storing the paths in environment variable)
|
|
tempDir := t.TempDir()
|
|
|
|
// extract public keys to files from embed.FS (needed for storing the paths in environment variable)
|
|
publicKey1Path := extractKeyFile(t, "test_key_pair_1.public.pem", tempDir)
|
|
publicKey2Path := extractKeyFile(t, "test_key_pair_2.public.pem", tempDir)
|
|
|
|
// load private keys from embed.FS
|
|
privateKey1 := loadPrivateKeyFile(t, "test_key_pair_1.private.pem")
|
|
privateKey2 := loadPrivateKeyFile(t, "test_key_pair_2.private.pem")
|
|
|
|
// create a minimal test plugin
|
|
zip := createMinimalPlugin(t)
|
|
if zip == nil {
|
|
return
|
|
}
|
|
|
|
// sign with private key 1 and create decoder
|
|
signed1, err := withkey.SignPluginWithPrivateKey(zip, &decoder.Verification{
|
|
AuthorizedCategory: decoder.AUTHORIZED_CATEGORY_LANGGENIUS,
|
|
}, privateKey1)
|
|
if err != nil {
|
|
t.Errorf("failed to sign with private key 1: %s", err.Error())
|
|
return
|
|
}
|
|
signedDecoder1, err := decoder.NewZipPluginDecoder(signed1)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// sign with private key 2 and create decoder
|
|
signed2, err := withkey.SignPluginWithPrivateKey(zip, &decoder.Verification{
|
|
AuthorizedCategory: decoder.AUTHORIZED_CATEGORY_LANGGENIUS,
|
|
}, privateKey2)
|
|
if err != nil {
|
|
t.Errorf("failed to sign with private key 2: %s", err.Error())
|
|
return
|
|
}
|
|
signedDecoder2, err := decoder.NewZipPluginDecoder(signed2)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// tamper the signed1 file and create decoder
|
|
modifiedSigned1 := make([]byte, len(signed1))
|
|
copy(modifiedSigned1, signed1)
|
|
modifiedSigned1[len(modifiedSigned1)-10] = 0
|
|
modifiedDecoder1, err := decoder.NewZipPluginDecoder(modifiedSigned1)
|
|
if err != nil {
|
|
t.Errorf("failed to create zip decoder: %s", err.Error())
|
|
return
|
|
}
|
|
|
|
// define test cases
|
|
tests := []struct {
|
|
name string
|
|
keyPaths string
|
|
signedDecoder decoder.PluginDecoder
|
|
expectSuccess bool
|
|
}{
|
|
{
|
|
name: "third-party verification with public key 1 (should succeed)",
|
|
keyPaths: publicKey1Path,
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: true,
|
|
},
|
|
{
|
|
name: "third-party verification with public key 2 (should fail)",
|
|
keyPaths: publicKey2Path,
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "third-party verification with both keys (should succeed)",
|
|
keyPaths: fmt.Sprintf("%s,%s", publicKey1Path, publicKey2Path),
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: true,
|
|
},
|
|
{
|
|
name: "third-party verification with empty key path (should fail)",
|
|
keyPaths: "",
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "third-party verification with non-existent key path (should fail)",
|
|
keyPaths: "/non/existent/path.pem",
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "third-party verification with multiple keys including non-existent path (should fail)",
|
|
keyPaths: fmt.Sprintf("%s,%s,/non/existent/path.pem", publicKey1Path, publicKey2Path),
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: false,
|
|
},
|
|
{
|
|
name: "third-party verification with multiple keys including extra spaces (should succeed)",
|
|
keyPaths: fmt.Sprintf(" %s , %s ", publicKey1Path, publicKey2Path),
|
|
signedDecoder: signedDecoder1,
|
|
expectSuccess: true,
|
|
},
|
|
{
|
|
name: "third-party verification with both keys, for file signed with key 2 (should succeed)",
|
|
keyPaths: fmt.Sprintf("%s,%s", publicKey1Path, publicKey2Path),
|
|
signedDecoder: signedDecoder2,
|
|
expectSuccess: true,
|
|
},
|
|
{
|
|
name: "third-party verification with both keys, for modified file (should fail)",
|
|
keyPaths: fmt.Sprintf("%s,%s", publicKey1Path, publicKey2Path),
|
|
signedDecoder: modifiedDecoder1,
|
|
expectSuccess: false,
|
|
},
|
|
}
|
|
|
|
// run test cases
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
err := decoder.VerifyPluginWithPublicKeyPaths(tt.signedDecoder, strings.Split(tt.keyPaths, ","))
|
|
if tt.expectSuccess && err != nil {
|
|
t.Errorf("expected success but got error: %s", err.Error())
|
|
}
|
|
if !tt.expectSuccess && err == nil {
|
|
t.Errorf("expected failure but got success")
|
|
}
|
|
})
|
|
}
|
|
}
|