-
-
Notifications
You must be signed in to change notification settings - Fork 182
/
Copy pathBase64UrlTest.cs
41 lines (36 loc) · 1.14 KB
/
Base64UrlTest.cs
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
using System;
using System.Collections.Generic;
using System.Text;
using Fido2NetLib;
using Xunit;
namespace fido2_net_lib.Test
{
public class Base64UrlTest
{
[Theory]
[MemberData(nameof(GetData))]
public void EncodeAndDecodeResultsAreEqual(byte[] data)
{
// Act
var encodedString = Base64Url.Encode(data);
var decodedBytes = Base64Url.Decode(encodedString);
// Assert
Assert.Equal(data, decodedBytes);
// Ensure this also works with the Utf8 decoder
Assert.Equal(data, Base64Url.DecodeUtf8(Encoding.UTF8.GetBytes(encodedString)));
}
public static IEnumerable<object[]> GetData()
{
return new TestDataGenerator();
}
private class TestDataGenerator : TheoryData<byte[]>
{
public TestDataGenerator()
{
Add(Encoding.UTF8.GetBytes("A"));
Add(Encoding.UTF8.GetBytes("This is a string fragment to test Base64Url encoding & decoding."));
Add(Array.Empty<byte>());
}
}
}
}