OSDN Git Service

バージョン11.12の準備
[kancollesniffer/KancolleSniffer.git] / KancolleSniffer.Test / Ascii85Test.cs
1 // Copyright (C) 2017 Kazuhiro Fujieda <fujieda@users.osdn.me>\r
2 //\r
3 // Licensed under the Apache License, Version 2.0 (the "License");\r
4 // you may not use this file except in compliance with the License.\r
5 // You may obtain a copy of the License at\r
6 //\r
7 //    http://www.apache.org/licenses/LICENSE-2.0\r
8 //\r
9 // Unless required by applicable law or agreed to in writing, software\r
10 // distributed under the License is distributed on an "AS IS" BASIS,\r
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
12 // See the License for the specific language governing permissions and\r
13 // limitations under the License.\r
14 \r
15 using System.Collections.Generic;\r
16 using ExpressionToCodeLib;\r
17 using KancolleSniffer.Util;\r
18 using Microsoft.VisualStudio.TestTools.UnitTesting;\r
19 \r
20 namespace KancolleSniffer.Test\r
21 {\r
22     [TestClass]\r
23     public class Ascii85Test\r
24     {\r
25         [TestMethod]\r
26         public void Encode()\r
27         {\r
28             PAssert.That(() => Ascii85.Encode(new byte [0]) == "<~~>");\r
29             var expected = new[]\r
30             {\r
31                 "",\r
32                 "!!",\r
33                 "!!*",\r
34                 "!!*-",\r
35                 "!!*-'",\r
36                 "!!*-'\"9",\r
37                 "!!*-'\"9e",\r
38                 "!!*-'\"9eu"\r
39             };\r
40             var input = new List<byte>();\r
41             for (var i = 0; i < expected.Length; input.Add((byte)i), i++)\r
42             {\r
43                 var i1 = i;\r
44                 PAssert.That(() => Ascii85.Encode(input.ToArray()) == "<~" + expected[i1] + "~>", $"Length: {i1}");\r
45             }\r
46             PAssert.That(() => Ascii85.Encode(new byte[] {0, 0, 0, 0}) == "<~" + "z" + "~>");\r
47         }\r
48     }\r
49 }