-
Notifications
You must be signed in to change notification settings - Fork 2
/
raw_sign_test.go
71 lines (64 loc) · 1.91 KB
/
raw_sign_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package ncanode_test
import (
"testing"
"github.com/danikarik/ncanode-go"
"github.com/stretchr/testify/require"
)
func TestRawSign(t *testing.T) {
client, err := ncanode.NewClient("http://127.0.0.1:14579")
require.NoError(t, err)
testCases := []struct {
Name string
Path string
Config *ncanode.TSPConfig
}{
{
Name: "Personal/Active/Auth",
Path: "personal/active/AUTH_RSA256_b2c70a9ff7a5dc59de0ccc3c0ddde3437cc1f12d.p12",
Config: &ncanode.TSPConfig{Enabled: true},
},
{
Name: "Personal/Active/Sign",
Path: "personal/active/RSA256_11c707bd54cbfcccb3815e39c4eb57b1dc7dfea9.p12",
Config: &ncanode.TSPConfig{Enabled: true},
},
{
Name: "Personal/Revoked/Auth",
Path: "personal/revoked/AUTH_RSA256_60d5a0346dd52fb5f3b9148e6cfbcd6cf323d119.p12",
},
{
Name: "Personal/Revoked/Sign",
Path: "personal/revoked/RSA256_346a7e57c2995259140b6fc375b6ff3bba7e852f.p12",
},
{
Name: "Organization/Active/Auth",
Path: "organization/active/AUTH_RSA256_d682726b55b3e62600ea8fe1c74e75fc96f47790.p12",
Config: &ncanode.TSPConfig{Enabled: true},
},
{
Name: "Organization/Active/Sign",
Path: "organization/active/GOSTKNCA_13a3741b52d7bf860aab199b56fad1f4652e357b.p12",
Config: &ncanode.TSPConfig{Enabled: true},
},
{
Name: "Organization/Revoked/Auth",
Path: "organization/revoked/AUTH_RSA256_7d6d313ac5bf7367a2a69f28607a8deb80dd3ba9.p12",
},
{
Name: "Organization/Revoked/Sign",
Path: "organization/revoked/GOSTKNCA_c372b7809440fcb681051bbc89ea2f089fd2fe16.p12",
},
}
for _, tc := range testCases {
t.Run(tc.Name, func(t *testing.T) {
p12, err := base64content(tc.Path)
require.NoError(t, err)
resp, err := client.RawSign(p12, _defaultPassword, _defaultRaw, tc.Config)
require.NoError(t, err)
require.NotEmpty(t, resp.Result.CMS)
if tc.Config != nil && tc.Config.Enabled {
require.NotEmpty(t, resp.Result.TSP)
}
})
}
}