forked from tinkernels/zerossl-ip-cert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzerossl_client_test.go
133 lines (123 loc) · 3.2 KB
/
zerossl_client_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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/*
* Copyright [2022] [tinkernels (github.com/tinkernels)]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package zerosslIPCert
import (
"crypto/elliptic"
"crypto/x509"
"crypto/x509/pkix"
"fmt"
"strings"
"testing"
"time"
)
func TestZeroSSLClient_GetCert(t *testing.T) {
c_ := &Client{ApiKey: "x"}
cert_, err := c_.GetCert("x")
if err != nil {
t.Error(err)
return
}
expireTime_, err := time.Parse("2006-01-02 15:04:05", cert_.Expires)
if err != nil {
t.Error(err)
} else {
if time.Now().Add(time.Hour * 24 * 29).After(expireTime_) {
t.Log("Expiring soon.")
}
}
t.Logf("cert: %#v", cert_)
}
func TestClient_CreateCert(t *testing.T) {
c_ := &Client{ApiKey: "x"}
privKey_ := GenEccKey(elliptic.P256())
subj_ := pkix.Name{
Country: []string{"US"},
Province: []string{"California"},
Locality: []string{"California"},
Organization: []string{"ZeroSSL"},
OrganizationalUnit: []string{"ZeroSSL"},
CommonName: "example.com",
}
csr_, err := GenEccCSR(subj_, privKey_, x509.ECDSAWithSHA256)
if err != nil {
t.Error(err)
return
}
csrStr_ := GetCSRString(csr_)
if csrStr_ == "" {
t.Error("failed to get csr string")
return
}
cert_, err := c_.CreateCert("example.com", csrStr_, "90", "1")
if err != nil {
t.Error(err)
return
}
t.Logf("cert: %#v", cert_)
}
func TestClient_DeleteCert(t *testing.T) {
c_ := &Client{ApiKey: "x"}
err := c_.CancelCert("x")
if err != nil {
t.Error(err)
return
}
t.Log("cert deleted")
}
func TestClient_VerifyDomains(t *testing.T) {
c_ := &Client{ApiKey: "x"}
rspModel_, err := c_.VerifyDomains("x", VerifyDomainsMethod.HttpCsrHash, "")
if err != nil {
t.Error(err)
return
}
t.Logf("domains verification result: %#v", rspModel_)
}
func TestClient_VerificationStatus(t *testing.T) {
c_ := &Client{ApiKey: "x"}
rspModel_, err := c_.VerificationStatus("x")
if err != nil {
t.Error(err)
return
}
t.Logf("verification status: %#v", rspModel_)
}
func TestClient_DownloadCertInline(t *testing.T) {
c_ := &Client{ApiKey: "x"}
cert_, err := c_.DownloadCertInline("x", "1")
if err != nil {
t.Error(err)
return
}
t.Logf("cert: %#v", cert_)
fullChainPem_ := fmt.Sprintf("%s\n%s\n", strings.TrimSpace(cert_.Certificate), strings.TrimSpace(cert_.CaBundle))
t.Logf("cert full chain: %s", fullChainPem_)
}
func TestClient_ListCerts(t *testing.T) {
c_ := &Client{ApiKey: "x"}
rspModel_, err := c_.ListCerts("", "example.com", "", "")
if err != nil {
t.Error(err)
return
}
t.Logf("certs: %#v", rspModel_)
}
func Test_CleanUnfinished(t *testing.T) {
c_ := &Client{ApiKey: "x"}
if err := c_.CleanUnfinished(); err != nil {
t.Logf("Failed to clean unfinished issuing certificate: %v\n", err)
}
}