@@ -41,8 +41,8 @@ public void TestGenerateVapidKeysNoCache()
41
41
public void TestGetVapidHeaders ( )
42
42
{
43
43
var publicKey = TestPublicKey ;
44
- var privatekey = TestPrivateKey ;
45
- var headers = VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubject , publicKey , privatekey ) ;
44
+ var privateKey = TestPrivateKey ;
45
+ var headers = VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubject , publicKey , privateKey ) ;
46
46
47
47
Assert . IsTrue ( headers . ContainsKey ( @"Authorization" ) ) ;
48
48
Assert . IsTrue ( headers . ContainsKey ( @"Crypto-Key" ) ) ;
@@ -52,54 +52,68 @@ public void TestGetVapidHeaders()
52
52
public void TestGetVapidHeadersAudienceNotAUrl ( )
53
53
{
54
54
var publicKey = TestPublicKey ;
55
- var privatekey = TestPrivateKey ;
55
+ var privateKey = TestPrivateKey ;
56
56
Assert . ThrowsException < ArgumentException > (
57
57
delegate
58
58
{
59
- VapidHelper . GetVapidHeaders ( "invalid audience" , ValidSubjectMailto , publicKey , privatekey ) ;
59
+ VapidHelper . GetVapidHeaders ( "invalid audience" , ValidSubjectMailto , publicKey , privateKey ) ;
60
60
} ) ;
61
61
}
62
62
63
63
[ TestMethod ]
64
64
public void TestGetVapidHeadersInvalidPrivateKey ( )
65
65
{
66
66
var publicKey = UrlBase64 . Encode ( new byte [ 65 ] ) ;
67
- var privatekey = UrlBase64 . Encode ( new byte [ 1 ] ) ;
67
+ var privateKey = UrlBase64 . Encode ( new byte [ 1 ] ) ;
68
68
69
69
Assert . ThrowsException < ArgumentException > (
70
- delegate { VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubject , publicKey , privatekey ) ; } ) ;
70
+ delegate { VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubject , publicKey , privateKey ) ; } ) ;
71
71
}
72
72
73
73
[ TestMethod ]
74
74
public void TestGetVapidHeadersInvalidPublicKey ( )
75
75
{
76
76
var publicKey = UrlBase64 . Encode ( new byte [ 1 ] ) ;
77
- var privatekey = UrlBase64 . Encode ( new byte [ 32 ] ) ;
77
+ var privateKey = UrlBase64 . Encode ( new byte [ 32 ] ) ;
78
78
79
79
Assert . ThrowsException < ArgumentException > (
80
- delegate { VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubject , publicKey , privatekey ) ; } ) ;
80
+ delegate { VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubject , publicKey , privateKey ) ; } ) ;
81
81
}
82
82
83
83
[ TestMethod ]
84
84
public void TestGetVapidHeadersSubjectNotAUrlOrMailTo ( )
85
85
{
86
86
var publicKey = TestPublicKey ;
87
- var privatekey = TestPrivateKey ;
87
+ var privateKey = TestPrivateKey ;
88
88
89
89
Assert . ThrowsException < ArgumentException > (
90
- delegate { VapidHelper . GetVapidHeaders ( ValidAudience , @"invalid subject" , publicKey , privatekey ) ; } ) ;
90
+ delegate { VapidHelper . GetVapidHeaders ( ValidAudience , @"invalid subject" , publicKey , privateKey ) ; } ) ;
91
91
}
92
92
93
93
[ TestMethod ]
94
94
public void TestGetVapidHeadersWithMailToSubject ( )
95
95
{
96
96
var publicKey = TestPublicKey ;
97
- var privatekey = TestPrivateKey ;
97
+ var privateKey = TestPrivateKey ;
98
98
var headers = VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubjectMailto , publicKey ,
99
- privatekey ) ;
99
+ privateKey ) ;
100
100
101
101
Assert . IsTrue ( headers . ContainsKey ( @"Authorization" ) ) ;
102
102
Assert . IsTrue ( headers . ContainsKey ( @"Crypto-Key" ) ) ;
103
103
}
104
+
105
+ [ TestMethod ]
106
+ public void TestExpirationInPastExceptions ( )
107
+ {
108
+ var publicKey = TestPublicKey ;
109
+ var privateKey = TestPrivateKey ;
110
+
111
+ Assert . ThrowsException < ArgumentException > (
112
+ delegate
113
+ {
114
+ VapidHelper . GetVapidHeaders ( ValidAudience , ValidSubjectMailto , publicKey ,
115
+ privateKey , 1552715607 ) ;
116
+ } ) ;
117
+ }
104
118
}
105
119
}
0 commit comments