示例#1
0
        public void TestDisabled()
        {
            _settings.AutoBanOnLogonFailure = false;
             _settings.MaxInvalidLogonAttempts = 3;
             _settings.MaxInvalidLogonAttemptsWithin = 5;
             _settings.AutoBanMinutes = 3;

             Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             var sim = new POP3ClientSimulator();
             CustomAssert.IsTrue(sim.ConnectAndLogon(account.Address, "test"));
             sim.Disconnect();

             // confirm that we can retrieve welcome message.
             CustomAssert.IsTrue(sim.GetWelcomeMessage().StartsWith("+OK"));

             string errorMessage;
             // fail to log on 3 times.
             for (int i = 0; i < 5; i++)
             {
            CustomAssert.IsFalse(sim.ConnectAndLogon(account.Address, "testA", out errorMessage));
            sim.Disconnect();
             }

             CustomAssert.IsTrue(sim.GetWelcomeMessage().StartsWith("+OK"));

             string logText = TestSetup.ReadCurrentDefaultLog();
             CustomAssert.IsFalse(logText.Contains("Blocked either by IP range or by connection limit."), logText);
        }
        public static void AssertMessageCount(string accountName, string accountPassword, int expectedCount)
        {
            if (expectedCount == 0)
             {
            // just in case.
            TestSetup.AssertRecipientsInDeliveryQueue(0);
             }

             int timeout = 100;
             int actualCount = 0;
             while (timeout > 0)
             {
            var oPOP3 = new POP3ClientSimulator();

            actualCount = oPOP3.GetMessageCount(accountName, accountPassword);
            if (actualCount == expectedCount)
               return;

            if (actualCount > expectedCount)
               CustomAssert.Fail(
                  string.Format(
                     "Actual count exceeds expected count. Account name: {2}, Actual: {0}, Expected: {1}.",
                     actualCount, expectedCount, accountName));

            timeout--;
            Thread.Sleep(50);
             }

             CustomAssert.Fail(string.Format("Wrong number of messages in inbox for {0}. Actual: {1}, Expected: {2}",
                                   accountName, actualCount, expectedCount));
        }
        public void IfStlsRequiredLogonShouldFailIfNoStls()
        {
            var pop3Simulator = new POP3ClientSimulator(false, 11003);
             pop3Simulator.Connect();
             string banner;
             pop3Simulator.ReceiveBanner(out banner);

             // run over TLS.
             var result = pop3Simulator.User("*****@*****.**");
             CustomAssert.IsTrue(result.StartsWith("-ERR STLS is required."));
        }
        public void IfStartTlsNotEnabledStartTlsShouldNotBeShownInEhloResponse()
        {
            var pop3Simulator = new POP3ClientSimulator(false, 110);
             pop3Simulator.Connect();
             string banner;

             pop3Simulator.ReceiveBanner(out banner);

             var data = pop3Simulator.CAPA();

             CustomAssert.IsFalse(data.Contains("STLS"));
        }
        public void IfStlsRequiredLogonShouldSucceedIfStls()
        {
            var pop3Simulator = new POP3ClientSimulator(false, 11003);
             pop3Simulator.Connect();
             string banner;
             pop3Simulator.ReceiveBanner(out banner);
             pop3Simulator.STLS();
             pop3Simulator.Handshake();

             // run over TLS.
             var result = pop3Simulator.User("*****@*****.**");
             CustomAssert.IsTrue(result.StartsWith("+OK"));
        }
        public void IfStlsOptionalButSslRequiredByIpRangeForAuthThenAuthShouldFail()
        {
            var range = SingletonProvider<TestSetup>.Instance.GetApp().Settings.SecurityRanges.get_ItemByName("My computer");
             range.RequireSSLTLSForAuth = true;
             range.Save();

             var pop3Simulator = new POP3ClientSimulator(false, 11002);
             pop3Simulator.Connect();
             string banner;
             pop3Simulator.ReceiveBanner(out banner);

             // run over TLS.
             var result = pop3Simulator.User("*****@*****.**");
             CustomAssert.IsTrue(result.StartsWith("-ERR A SSL/TLS-connection is required for authentication."));
        }
示例#7
0
        public void TestEmptyPassword()
        {
            Account account1 = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "");

             string message;
             var sim = new POP3ClientSimulator();
             CustomAssert.IsFalse(sim.ConnectAndLogon(account1.Address, "", out message));

             var simIMAP = new IMAPClientSimulator();
             CustomAssert.IsFalse(simIMAP.ConnectAndLogon(account1.Address, "", out message));
             CustomAssert.AreEqual("A01 NO Invalid user name or password.\r\n", message);

             var simSMTP = new SMTPClientSimulator();
             CustomAssert.IsFalse(simSMTP.ConnectAndLogon("dGVzdEB0ZXN0LmNvbQ==", "", out message));
             CustomAssert.AreEqual("535 Authentication failed. Restarting authentication process.\r\n", message);
        }
示例#8
0
        public void TestImproperDisconnect()
        {
            TestSetup.AssertSessionCount(eSessionType.eSTPOP3, 0);

             var application = SingletonProvider<TestSetup>.Instance.GetApp();

             var account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");
             int iCount = application.Status.get_SessionCount(eSessionType.eSTPOP3);

             var oPOP3 = new POP3ClientSimulator();
             oPOP3.ConnectAndLogon(account.Address, "test");
             TestSetup.AssertSessionCount(eSessionType.eSTPOP3, iCount + 1);
             oPOP3.Disconnect(); // Disconnect without sending quit

             TestSetup.AssertSessionCount(eSessionType.eSTPOP3, iCount);
        }
示例#9
0
        public void TestAttachmentEncoding()
        {
            string[] testFiles = GetTestFiles();

             SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             foreach (string testFile in testFiles)
             {
            Trace.WriteLine(testFile);

            string fileHash = TestSetup.GetFileHash(testFile);

            var mail = new MailMessage();
            mail.From = new MailAddress("*****@*****.**");
            mail.To.Add("*****@*****.**");
            mail.Subject = "Test";
            mail.Attachments.Add(new Attachment(testFile));

            TestSetup.SendMessage(mail);

            POP3ClientSimulator.AssertMessageCount("*****@*****.**", "test", 1);

            var sim = new POP3ClientSimulator();
            sim.ConnectAndLogon("*****@*****.**", "test");
            string fileContent = sim.RETR(1);
            sim.DELE(1);
            sim.QUIT();

            var message = new Message();

            try
            {
               File.WriteAllText(message.Filename, fileContent);
               message.RefreshContent();

               message.Attachments[0].SaveAs(message.Filename);
               string fileHashAfter = TestSetup.GetFileHash(message.Filename);

               CustomAssert.AreEqual(fileHash, fileHashAfter);
            }
            finally
            {
               File.Delete(message.Filename);
            }
             }
        }
        public static string AssertGetFirstMessageText(string accountName, string accountPassword)
        {
            // Wait for the message to appear.
             var pop3 = new POP3ClientSimulator();
             for (int i = 0; i < 5000; i++)
             {
            if (pop3.GetMessageCount(accountName, accountPassword) > 0)
               break;

            Thread.Sleep(20);
             }

             // Download it.
             string text = pop3.GetFirstMessageText(accountName, accountPassword);

             if (text.Length == 0)
            CustomAssert.Fail("Message was found but contents could not be received");

             return text;
        }
示例#11
0
        public static void AssertMessageCount(string accountName, string accountPassword, int expectedCount)
        {
            if (expectedCount == 0)
            {
                // just in case.
                TestSetup.AssertRecipientsInDeliveryQueue(0);
            }

            int timeout     = 100;
            int actualCount = 0;

            while (timeout > 0)
            {
                var oPOP3 = new POP3ClientSimulator();

                actualCount = oPOP3.GetMessageCount(accountName, accountPassword);
                if (actualCount == expectedCount)
                {
                    return;
                }

                if (actualCount > expectedCount)
                {
                    CustomAssert.Fail(
                        string.Format(
                            "Actual count exceeds expected count. Account name: {2}, Actual: {0}, Expected: {1}.",
                            actualCount, expectedCount, accountName));
                }

                timeout--;
                Thread.Sleep(50);
            }

            CustomAssert.Fail(string.Format("Wrong number of messages in inbox for {0}. Actual: {1}, Expected: {2}",
                                            accountName, actualCount, expectedCount));
        }
示例#12
0
        public void TestLogonMailboxWithDeletedMessage()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             for (int i = 1; i <= 3; i++)
            SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test",
                                           "Line1\r\nLine2\r\nLine3\r\nLine4\r\nLine\r\n");

             // Mark the second message as deleted using IMAP.
             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 3);

             var sim = new IMAPClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             sim.SelectFolder("INBOX");
             sim.SetDeletedFlag(2);
             sim.Disconnect();

             // Now list messages and confirm that all are listed.

             var pop3Client = new POP3ClientSimulator();
             pop3Client.ConnectAndLogon(account.Address, "test");
             string listResponse = pop3Client.LIST();
             string uidlResponse = pop3Client.UIDL();

             CustomAssert.IsTrue(listResponse.Contains("\r\n1"));
             CustomAssert.IsTrue(listResponse.Contains("\r\n2"));
             CustomAssert.IsTrue(listResponse.Contains("\r\n3"));
             CustomAssert.IsTrue(listResponse.Contains("\r\n.\r\n"));
             CustomAssert.IsTrue(listResponse.Contains("3 messages"));

             CustomAssert.IsTrue(uidlResponse.Contains("\r\n1"));
             CustomAssert.IsTrue(uidlResponse.Contains("\r\n2"));
             CustomAssert.IsTrue(uidlResponse.Contains("\r\n3"));
             CustomAssert.IsTrue(uidlResponse.Contains("\r\n.\r\n"));
             CustomAssert.IsTrue(uidlResponse.Contains("3 messages"));
        }
示例#13
0
        public void TestPOP3TransactionSafety()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             CustomAssert.IsTrue(SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody"));
             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 1);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");

             // Now delete the message using an IMAP client.
             var imapSimulator = new IMAPClientSimulator();
             CustomAssert.IsTrue(imapSimulator.ConnectAndLogon(account.Address, "test"));
             CustomAssert.IsTrue(imapSimulator.SelectFolder("INBOX"));
             CustomAssert.IsTrue(imapSimulator.SetDeletedFlag(1));
             CustomAssert.IsTrue(imapSimulator.Expunge());
             CustomAssert.AreEqual(0, imapSimulator.GetMessageCount("Inbox"));

             CustomAssert.IsTrue(SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody"));
             IMAPClientSimulator.AssertMessageCount(account.Address, "test", "Inbox", 1);

             // This deletion should not have any effect, since the POP3 connection is referencing an old message.
             sim.DELE(1);
             sim.QUIT();

             CustomAssert.AreEqual(1, imapSimulator.GetMessageCount("Inbox"));
        }
示例#14
0
        public void TestTOPSpecificEntire()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             for (int i = 1; i <= 10; i++)
            SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody" + i.ToString());

             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 10);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             string result = sim.TOP(1, 0);

             CustomAssert.IsTrue(result.Contains("Received"));
             CustomAssert.IsTrue(result.Contains("Subject"));
        }
示例#15
0
        public void TestUIDLSpecific()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody1");
             SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody2");
             SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody3");

             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 3);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             string result = sim.UIDL(2);

             CustomAssert.IsTrue(result.Contains("OK 2"));

             result = sim.UIDL(3);
             CustomAssert.IsTrue(result.Contains("OK 3"));
        }
示例#16
0
 public void TestPOP3Server()
 {
     var sim = new POP3ClientSimulator();
      sim.ConnectAndLogon(GetUsername(), GetPassword());
      EnsureNoPassword();
 }
示例#17
0
        public void TestIPRangeName()
        {
            _settings.AutoBanOnLogonFailure = true;
             _settings.MaxInvalidLogonAttempts = 3;
             _settings.MaxInvalidLogonAttemptsWithin = 5;
             _settings.AutoBanMinutes = 3;

             CustomAssert.AreEqual(2, _settings.SecurityRanges.Count);

             Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             var sim = new POP3ClientSimulator();
             CustomAssert.IsTrue(sim.ConnectAndLogon(account.Address, "test"));
             sim.Disconnect();

             // confirm that we can retrieve welcome message.
             CustomAssert.IsTrue(sim.GetWelcomeMessage().StartsWith("+OK"));

             string errorMessage;
             // fail to log on 3 times.
             for (int i = 0; i < 3; i++)
             {
            CustomAssert.IsFalse(sim.ConnectAndLogon(account.Address, "testA", out errorMessage));
            sim.Disconnect();

            if (i == 2)
            {
               CustomAssert.IsTrue(errorMessage.Contains("Too many invalid logon attempts."));
            }
             }

             CustomAssert.IsTrue(sim.GetWelcomeMessage().Length == 0);

             CustomAssert.AreEqual(3, _settings.SecurityRanges.Count);
             CustomAssert.AreEqual("Auto-ban: [email protected]", _settings.SecurityRanges[2].Name);
        }
示例#18
0
        public void TestPOP3Server()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             var smtpSim = new SMTPClientSimulator();
             CustomAssert.IsTrue(smtpSim.Send("*****@*****.**", account.Address, "Test", "MyBody"));

             for (int i = 0; i < 10; i++)
             {
            try
            {
               POP3ClientSimulator.AssertMessageCount(account.Address, "test", 1);
               var pop3Sim = new POP3ClientSimulator(true, 11001);
               string text = pop3Sim.GetFirstMessageText(account.Address, "test");

               CustomAssert.IsTrue(text.Contains("MyBody"));

               break;
            }
            catch (AssertionException)
            {
               throw;
            }
            catch (Exception)
            {
               if (i == 9)
                  throw;
            }
             }
        }
示例#19
0
        private void WaitForMessageCount(TimeSpan timeout, int expectedMessageCount)
        {
            RetryHelper.TryAction(timeout, () =>
            {
               var pop3ClientSimulator = new POP3ClientSimulator();
               int count = pop3ClientSimulator.GetMessageCount("*****@*****.**", "test");

               Assert.AreEqual(expectedMessageCount, count);
            });
        }
示例#20
0
        public void TestDELEInvalid()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             for (int i = 1; i <= 10; i++)
            SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody" + i.ToString());

             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 10);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             CustomAssert.IsFalse(sim.DELE(0));
             CustomAssert.IsFalse(sim.DELE(-1));
             CustomAssert.IsFalse(sim.DELE(1000));
             CustomAssert.IsTrue(sim.DELE(5));
        }
示例#21
0
        public void WelcomeMessage()
        {
            SingletonProvider<TestSetup>.Instance.GetApp().Settings.WelcomePOP3 = "HOWDYHO POP3";

             var oSimulator = new POP3ClientSimulator();

             string sWelcomeMessage = oSimulator.GetWelcomeMessage();

             if (sWelcomeMessage != "+OK HOWDYHO POP3\r\n")
            throw new Exception("ERROR - Wrong welcome message.");
        }
示例#22
0
        public void TestUIDLWithDeleted()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             for (int i = 1; i <= 10; i++)
            SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody" + i.ToString());

             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 10);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             sim.DELE(2);
             sim.DELE(4);
             string result = sim.UIDL();

             CustomAssert.IsTrue(result.Contains("8 messages"));
             CustomAssert.IsTrue(result.Contains("\r\n1"));
             CustomAssert.IsTrue(result.Contains("\r\n3"));
             CustomAssert.IsTrue(result.Contains("\r\n5"));
             CustomAssert.IsTrue(result.Contains("\r\n."));
        }
示例#23
0
        public void TestPortOpening()
        {
            Application oApp = SingletonProvider<TestSetup>.Instance.GetApp();

             oApp.Settings.TCPIPPorts.SetDefault();

             var pSMTPSimulator = new TcpConnection();
             var pPOP3Simulator = new POP3ClientSimulator();
             var pIMAPSimulator = new IMAPClientSimulator();

             oApp.Stop();

             TCPIPPorts oPorts = oApp.Settings.TCPIPPorts;
             for (int i = 0; i < oPorts.Count; i++)
             {
            TCPIPPort oTestPort = oPorts[i];
            if (oTestPort.Protocol == eSessionType.eSTIMAP)
               oTestPort.PortNumber = 14300;
            else if (oTestPort.Protocol == eSessionType.eSTSMTP)
               oTestPort.PortNumber = 11000;
            else if (oTestPort.Protocol == eSessionType.eSTPOP3)
               oTestPort.PortNumber = 2500;

            oTestPort.Save();
             }

             oApp.Start();

             CustomAssert.IsTrue(pSMTPSimulator.TestConnect(2500));
             CustomAssert.IsTrue(pSMTPSimulator.TestConnect(11000));
             CustomAssert.IsTrue(pSMTPSimulator.TestConnect(14300));

             oApp.Stop();

             TCPIPPort oPort = oApp.Settings.TCPIPPorts.Add();
             oPort.Protocol = eSessionType.eSTSMTP;
             oPort.PortNumber = 25000;
             oPort.Save();

             oApp.Start();

             // Try to connect to the new port
             CustomAssert.IsTrue(pSMTPSimulator.TestConnect(25000));

             oApp.Stop();

             // Delete the port again
             oApp.Settings.TCPIPPorts.DeleteByDBID(oPort.ID);

             // Change back the ports
             for (int i = 0; i < oPorts.Count; i++)
             {
            TCPIPPort oTestPort = oPorts[i];
            if (oTestPort.Protocol == eSessionType.eSTIMAP)
               oTestPort.PortNumber = 143;
            else if (oTestPort.Protocol == eSessionType.eSTSMTP)
               oTestPort.PortNumber = 25;
            else if (oTestPort.Protocol == eSessionType.eSTPOP3)
               oTestPort.PortNumber = 110;

            oTestPort.Save();
             }

             oApp.Start();

             CustomAssert.IsTrue(pSMTPSimulator.TestConnect(25));
             CustomAssert.IsTrue(pPOP3Simulator.TestConnect(110));
             CustomAssert.IsTrue(pPOP3Simulator.TestConnect(143));
        }
示例#24
0
        public void TestNotificationOnPOP3Deletion()
        {
            _settings.IMAPIdleEnabled = true;

             Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");
             SMTPClientSimulator.StaticSend(account.Address, account.Address, "Message 1", "Body 1");
             SMTPClientSimulator.StaticSend(account.Address, account.Address, "Message 1", "Body 1");
             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 2);

             var imapSimulator = new IMAPClientSimulator();
             string sWelcomeMessage = imapSimulator.Connect();
             CustomAssert.IsTrue(imapSimulator.Logon("*****@*****.**", "test"));
             CustomAssert.IsTrue(imapSimulator.SelectFolder("INBOX"));
             CustomAssert.IsTrue(imapSimulator.StartIdle());

             var sim = new POP3ClientSimulator();
             CustomAssert.IsTrue(sim.ConnectAndLogon(account.Address, "test"));
             CustomAssert.IsTrue(sim.DELE(1));
             sim.QUIT();

             // After a delete, the following should be sent tot he IMAP client:
             //  - EXPUNGE
             //  - EXISTS
             //  - RECENT
             CustomAssert.IsTrue(imapSimulator.AssertPendingDataExists(), "No pending data exist");

             var deadline = DateTime.Now.AddSeconds(10);
             var message = new StringBuilder();

             while (DateTime.Now < deadline)
             {
            if (imapSimulator.GetPendingDataExists())
               message.Append(imapSimulator.Receive());

            var str = message.ToString();

            if (str.Contains("* 1 EXPUNGE") &&
                str.Contains("EXISTS") &&
                str.Contains("RECENT"))
            {
               return;
            }
             }

             var receivedText = message.ToString();
             CustomAssert.IsTrue(receivedText.Contains("* 1 EXPUNGE"), receivedText);
             CustomAssert.IsTrue(receivedText.Contains("EXISTS"), receivedText);
             CustomAssert.IsTrue(receivedText.Contains("RECENT"), receivedText);
        }
示例#25
0
        public void TestTOPSpecificPartial()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             for (int i = 1; i <= 10; i++)
            SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test",
                                           "Line1\r\nLine2\r\nLine3\r\nLine4\r\nLine\r\n");

             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 10);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             string result = sim.TOP(4, 2);

             CustomAssert.IsTrue(result.Contains("Received"));
             CustomAssert.IsTrue(result.Contains("Line1"));
             CustomAssert.IsTrue(result.Contains("Line2"));
             CustomAssert.IsFalse(result.Contains("Line3"));
             CustomAssert.IsFalse(result.Contains("Line4"));
        }
示例#26
0
        public void TestReinitialize()
        {
            string @messageText =
            "From: [email protected]\r\n" +
            "\r\n" +
            "WhatTest\r\n";

             Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");
             CustomAssert.IsTrue(SMTPClientSimulator.StaticSend(account.Address, account.Address, "First message",
                                                      "Test message"));
             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 1);

             // Create another message on disk and import it.
             string domainPath = Path.Combine(_application.Settings.Directories.DataDirectory, "test.com");
             string accountPath = Path.Combine(domainPath, "test");
             Directory.CreateDirectory(accountPath);
             string fileName = Path.Combine(accountPath, "something.eml");
             File.WriteAllText(fileName, messageText);
             CustomAssert.IsTrue(_application.Utilities.ImportMessageFromFile(fileName, account.ID));

             // Since the cache isn't refreshed, the message has not yet appeared.
             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 1);

             // Reinitialize the server. Should, among other things, clear the cache.
             _application.Reinitialize();

             // Now the message should have appeared.
             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 2);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             messageText = sim.RETR(2);
             sim.QUIT();

             CustomAssert.IsTrue(messageText.Contains("WhatTest"), messageText);
        }
示例#27
0
        public void StlsCommandShouldSwithToTls()
        {
            var pop3Simulator = new POP3ClientSimulator(false, 11002);
             pop3Simulator.Connect();
             string banner;
             pop3Simulator.ReceiveBanner(out banner);
             pop3Simulator.STLS();
             pop3Simulator.Handshake();

             // run over TLS.
             pop3Simulator.HELP();
        }
示例#28
0
        public void TestSendToMultipleAccounts()
        {
            Application application = SingletonProvider<TestSetup>.Instance.GetApp();
             Account oAccount1 = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");
             Account oAccount2 = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");
             Account oAccount3 = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             var oSMTP = new SMTPClientSimulator();

             var lstRecipients = new List<string>();
             lstRecipients.Add("*****@*****.**");
             lstRecipients.Add("*****@*****.**");
             lstRecipients.Add("*****@*****.**");

             string sBody = "Test of sending same email to multiple accounts.";

             oSMTP.Send(oAccount1.Address, lstRecipients, "Multi test", sBody);

             var oPOP3 = new POP3ClientSimulator();

             string sMessageData = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageData.IndexOf(sBody) < 0)
            throw new Exception("E-mail not found");

             sMessageData = POP3ClientSimulator.AssertGetFirstMessageText(oAccount2.Address, "test");
             if (sMessageData.IndexOf(sBody) < 0)
            throw new Exception("E-mail not found");

             sMessageData = POP3ClientSimulator.AssertGetFirstMessageText(oAccount3.Address, "test");
             if (sMessageData.IndexOf(sBody) < 0)
            throw new Exception("E-mail not found");
        }
示例#29
0
        public void TestUIDLInvalid()
        {
            Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "*****@*****.**", "test");

             for (int i = 1; i <= 10; i++)
            SMTPClientSimulator.StaticSend(account.Address, account.Address, "Test", "TestBody" + i.ToString());

             POP3ClientSimulator.AssertMessageCount(account.Address, "test", 10);

             var sim = new POP3ClientSimulator();
             sim.ConnectAndLogon(account.Address, "test");
             string result = sim.UIDL(0);
             CustomAssert.IsTrue(result.Contains("No such message"));
             result = sim.UIDL(-1);
             CustomAssert.IsTrue(result.Contains("No such message"));
             result = sim.UIDL(100);
             CustomAssert.IsTrue(result.Contains("No such message"));
        }
示例#30
0
        public void TestDomainSignature()
        {
            var oPOP3 = new POP3ClientSimulator();

             domain.SignatureEnabled = true;
             domain.AddSignaturesToLocalMail = true;

             Account oAccount1 = SingletonProvider<TestSetup>.Instance.AddAccount(domain, "*****@*****.**",
                                                                              "test");
             oAccount1.SignatureEnabled = true;
             oAccount1.SignaturePlainText = "PlainTextSignature";
             oAccount1.Save();

             var oSMTP = new SMTPClientSimulator();
             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             string sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("PlainTextSignature") <= 0)
            throw new Exception("Did not find signature");

             domain.SignatureEnabled = true;
             domain.SignaturePlainText = "DomainSignature";
             domain.SignatureMethod = eDomainSignatureMethod.eSMAppendToAccountSignature;
             domain.Save();
             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("PlainTextSignature") <= 0 ||
             sMessageContents.IndexOf("DomainSignature") <= 0)
            throw new Exception("Did not find signature");

             domain.SignatureEnabled = true;
             domain.SignaturePlainText = "DomainSignature";
             domain.SignatureMethod = eDomainSignatureMethod.eSMOverwriteAccountSignature;
             domain.Save();
             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("PlainTextSignature") >= 0 ||
             sMessageContents.IndexOf("DomainSignature") <= 0)
            throw new Exception("Did not find signature");

             domain.SignatureEnabled = true;
             domain.SignaturePlainText = "DomainSignature";
             domain.SignatureMethod = eDomainSignatureMethod.eSMSetIfNotSpecifiedInAccount;
             domain.Save();
             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("DomainSignature") >= 0)
            throw new Exception("Found incorrect signature.");

             domain.SignatureEnabled = true;
             domain.SignaturePlainText = "DomainSignature";
             domain.SignatureMethod = eDomainSignatureMethod.eSMSetIfNotSpecifiedInAccount;
             domain.Save();
             oAccount1.SignaturePlainText = "";
             oAccount1.Save();

             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("DomainSignature") <= 0)
            throw new Exception("Found incorrect signature.");

             domain.AddSignaturesToLocalMail = false;
             domain.Save();
             oAccount1.SignaturePlainText = "PlainTextSignature";
             oAccount1.Save();
             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("PlainTextSignature") > 0)
            throw new Exception("Found incorrect signature.");

             domain.AddSignaturesToLocalMail = true;
             domain.Save();

             oSMTP.Send(oAccount1.Address, oAccount1.Address, "Test of signature, 1", "Test of signature - Body");

             sMessageContents = POP3ClientSimulator.AssertGetFirstMessageText(oAccount1.Address, "test");
             if (sMessageContents.IndexOf("PlainTextSignature") <= 0)
            throw new Exception("Found incorrect signature.");
        }
示例#31
0
        public void TestAutoReplySubject()
        {
            // Create a test account
             // Fetch the default domain
             Account oAccount1 = SingletonProvider<TestSetup>.Instance.AddAccount(_domain,
                                                                              TestSetup.RandomString() + "@test.com",
                                                                              "test");
             Account oAccount2 = SingletonProvider<TestSetup>.Instance.AddAccount(_domain,
                                                                              TestSetup.RandomString() + "@test.com",
                                                                              "test");

             oAccount2.VacationMessageIsOn = true;
             oAccount2.VacationMessage = "I'm on vacation";
             oAccount2.VacationSubject = "Auto-Reply: %SUBJECT%";
             oAccount2.Save();

             // Send 1 message to this account
             var oSMTP = new SMTPClientSimulator();
             oSMTP.Send(oAccount1.Address, oAccount2.Address, "Test message", "This is the body");

             // Wait a second to be sure that the message
             // are delivered.

             // Check using POP3 that 2 messages exists.
             var oPOP3 = new POP3ClientSimulator();

             POP3ClientSimulator.AssertMessageCount(oAccount1.Address, "test", 1);
             string s = oPOP3.GetFirstMessageText(oAccount1.Address, "test");
             if (s.IndexOf("Subject: Auto-Reply: Test message") < 0)
            throw new Exception("ERROR - Auto reply subject not set properly.");
        }