about summary refs log tree commit diff
path: root/IrcTokens/Tests
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2020-05-06 10:39:59 -0400
committerBen Harris <ben@tilde.team>2020-05-06 10:39:59 -0400
commitbe7ffb0d5d36f6f292bfdc779bfd903308c7b439 (patch)
tree23c4c0318488c318483f7a3ed426075cbc880e78 /IrcTokens/Tests
parent7c482d8cd99b59bbbecf636b797e9e7fec652514 (diff)
add params Line() constructor
Diffstat (limited to 'IrcTokens/Tests')
-rw-r--r--IrcTokens/Tests/Format.cs45
1 files changed, 13 insertions, 32 deletions
diff --git a/IrcTokens/Tests/Format.cs b/IrcTokens/Tests/Format.cs
index 8ef5344..69a5682 100644
--- a/IrcTokens/Tests/Format.cs
+++ b/IrcTokens/Tests/Format.cs
@@ -10,11 +10,9 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestTags()
         {
-            var line = new Line
+            var line = new Line("PRIVMSG", "#channel", "hello")
             {
-                Command = "PRIVMSG",
-                Params  = new List<string> {"#channel", "hello"},
-                Tags    = new Dictionary<string, string> {{"id", "\\" + " " + ";" + "\r\n"}}
+                Tags = new Dictionary<string, string> {{"id", "\\" + " " + ";" + "\r\n"}}
             }.Format();
 
             Assert.AreEqual("@id=\\\\\\s\\:\\r\\n PRIVMSG #channel hello", line);
@@ -23,7 +21,7 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestMissingTag()
         {
-            var line = new Line {Command = "PRIVMSG", Params = new List<string> {"#channel", "hello"}}.Format();
+            var line = new Line("PRIVMSG", "#channel", "hello").Format();
 
             Assert.AreEqual("PRIVMSG #channel hello", line);
         }
@@ -31,12 +29,8 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestNullTag()
         {
-            var line = new Line
-            {
-                Command = "PRIVMSG",
-                Params  = new List<string> {"#channel", "hello"},
-                Tags    = new Dictionary<string, string> {{"a", null}}
-            }.Format();
+            var line = new Line("PRIVMSG", "#channel", "hello") {Tags = new Dictionary<string, string> {{"a", null}}}
+                .Format();
 
             Assert.AreEqual("@a PRIVMSG #channel hello", line);
         }
@@ -44,12 +38,8 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestEmptyTag()
         {
-            var line = new Line
-            {
-                Command = "PRIVMSG",
-                Params  = new List<string> {"#channel", "hello"},
-                Tags    = new Dictionary<string, string> {{"a", ""}}
-            }.Format();
+            var line = new Line("PRIVMSG", "#channel", "hello") {Tags = new Dictionary<string, string> {{"a", ""}}}
+                .Format();
 
             Assert.AreEqual("@a PRIVMSG #channel hello", line);
         }
@@ -57,10 +47,7 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestSource()
         {
-            var line = new Line
-            {
-                Command = "PRIVMSG", Params = new List<string> {"#channel", "hello"}, Source = "nick!user@host"
-            }.Format();
+            var line = new Line("PRIVMSG", "#channel", "hello") {Source = "nick!user@host"}.Format();
 
             Assert.AreEqual(":nick!user@host PRIVMSG #channel hello", line);
         }
@@ -82,7 +69,7 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestTrailingSpace()
         {
-            var line = new Line {Command = "PRIVMSG", Params = new List<string> {"#channel", "hello world"}}.Format();
+            var line = new Line("PRIVMSG", "#channel", "hello world").Format();
 
             Assert.AreEqual("PRIVMSG #channel :hello world", line);
         }
@@ -90,7 +77,7 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestTrailingNoSpace()
         {
-            var line = new Line {Command = "PRIVMSG", Params = new List<string> {"#channel", "helloworld"}}.Format();
+            var line = new Line("PRIVMSG", "#channel", "helloworld").Format();
 
             Assert.AreEqual("PRIVMSG #channel helloworld", line);
         }
@@ -98,7 +85,7 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestTrailingDoubleColon()
         {
-            var line = new Line {Command = "PRIVMSG", Params = new List<string> {"#channel", ":helloworld"}}.Format();
+            var line = new Line("PRIVMSG", "#channel", ":helloworld").Format();
 
             Assert.AreEqual("PRIVMSG #channel ::helloworld", line);
         }
@@ -106,19 +93,13 @@ namespace IrcTokens.Tests
         [TestMethod]
         public void TestInvalidNonLastSpace()
         {
-            Assert.ThrowsException<ArgumentException>(() =>
-            {
-                new Line {Command = "USER", Params = new List<string> {"user", "0 *", "real name"}}.Format();
-            });
+            Assert.ThrowsException<ArgumentException>(() => { new Line("USER", "user", "0 *", "real name").Format(); });
         }
 
         [TestMethod]
         public void TestInvalidNonLastColon()
         {
-            Assert.ThrowsException<ArgumentException>(() =>
-            {
-                new Line {Command = "PRIVMSG", Params = new List<string> {":#channel", "hello"}}.Format();
-            });
+            Assert.ThrowsException<ArgumentException>(() => { new Line("PRIVMSG", ":#channel", "hello").Format(); });
         }
     }
 }