mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 08:23:50 +01:00
180c3d9ae1
Signed-off-by: InsanePrawn <insane.prawny@gmail.com>
21 lines
547 B
Go
21 lines
547 B
Go
package job
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/zrepl/zrepl/endpoint"
|
|
"github.com/zrepl/zrepl/transport"
|
|
)
|
|
|
|
func TestFakeActiveSideDirectMethodInvocationClientIdentityDoesNotPassValidityTest(t *testing.T) {
|
|
jobid, err := endpoint.MakeJobID("validjobname")
|
|
require.NoError(t, err)
|
|
clientIdentity := FakeActiveSideDirectMethodInvocationClientIdentity(jobid)
|
|
t.Logf("%v", clientIdentity)
|
|
err = transport.ValidateClientIdentity(clientIdentity)
|
|
assert.Error(t, err)
|
|
}
|