about summary refs log tree commit diff
path: root/IRCTokens/Tests/StatefulDecoder.cs
blob: 4da769051b65a6f3784852e39a7b85b1b52f28d1 (plain) (blame)
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
using System.Collections.Generic;
using System.Text;
using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace IRCTokens.Tests
{
    [TestClass]
    public class StatefulDecoder
    {
        private IRCTokens.StatefulDecoder _decoder;

        [TestInitialize]
        public void Initialize()
        {
            _decoder = new IRCTokens.StatefulDecoder();
        }

        [TestMethod]
        public void Partial()
        {
            var lines = _decoder.Push("PRIVMSG ");
            Assert.AreEqual(0, lines.Count);

            lines = _decoder.Push("#channel hello\r\n");
            Assert.AreEqual(1, lines.Count);

            var line = new Line("PRIVMSG #channel hello");
            CollectionAssert.AreEqual(new List<Line> {line}, lines);
        }

        [TestMethod]
        public void Multiple()
        {
            var lines = _decoder.Push("PRIVMSG #channel1 hello\r\nPRIVMSG #channel2 hello\r\n");
            Assert.AreEqual(2, lines.Count);

            var line1 = new Line("PRIVMSG #channel1 hello");
            var line2 = new Line("PRIVMSG #channel2 hello");
            Assert.AreEqual(line1, lines[0]);
            Assert.AreEqual(line2, lines[1]);
        }

        [TestMethod]
        public void EncodingIso8859()
        {
            var iso8859 = Encoding.GetEncoding("iso-8859-1");
            _decoder = new IRCTokens.StatefulDecoder {Encoding = iso8859};
            var bytes = iso8859.GetBytes("PRIVMSG #channel :hello Ç\r\n");
            var lines = _decoder.Push(bytes, bytes.Length);
            var line  = new Line("PRIVMSG #channel :hello Ç");
            Assert.IsTrue(line.Equals(lines[0]));
        }

        [TestMethod]
        public void EncodingFallback()
        {
            var latin1 = Encoding.GetEncoding("iso-8859-1");
            _decoder = new IRCTokens.StatefulDecoder {Encoding = null, Fallback = latin1};
            var bytes = latin1.GetBytes("PRIVMSG #channel hélló\r\n");
            var lines = _decoder.Push(bytes, bytes.Length);
            Assert.AreEqual(1, lines.Count);
            Assert.IsTrue(new Line("PRIVMSG #channel hélló").Equals(lines[0]));
        }

        [TestMethod]
        public void Empty()
        {
            var lines = _decoder.Push(string.Empty);
            Assert.AreEqual(0, lines.Count);
        }

        [TestMethod]
        public void BufferUnfinished()
        {
            _decoder.Push("PRIVMSG #channel hello");
            var lines = _decoder.Push(string.Empty);
            Assert.AreEqual(0, lines.Count);
        }

        [TestMethod]
        public void Clear()
        {
            _decoder.Push("PRIVMSG ");
            _decoder.Clear();
            Assert.AreEqual(string.Empty, _decoder.Pending);
        }
    }
}