当前位置: 首页>>代码示例>>C#>>正文


C# IMAPClientSimulator.GetPendingDataExists方法代码示例

本文整理汇总了C#中RegressionTests.Shared.IMAPClientSimulator.GetPendingDataExists方法的典型用法代码示例。如果您正苦于以下问题:C# IMAPClientSimulator.GetPendingDataExists方法的具体用法?C# IMAPClientSimulator.GetPendingDataExists怎么用?C# IMAPClientSimulator.GetPendingDataExists使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在RegressionTests.Shared.IMAPClientSimulator的用法示例。


在下文中一共展示了IMAPClientSimulator.GetPendingDataExists方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: TestIdle

        public void TestIdle()
        {
            _settings.IMAPIdleEnabled = true;

             Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "[email protected]", "test");

             var oSimulator = new IMAPClientSimulator();

             string sWelcomeMessage = oSimulator.Connect();
             oSimulator.Logon(account.Address, "test");
             CustomAssert.IsTrue(oSimulator.SelectFolder("INBOX"));

             oSimulator.StartIdle();

             if (oSimulator.GetPendingDataExists())
            throw new Exception("Unexpected data exists");

             // Send a message to this account.
             var oSMTP = new SMTPClientSimulator();
             oSMTP.Send(account.Address, account.Address, "IDLE Test", "This is a test of IDLE");

             string data;
             CustomAssert.IsTrue(oSimulator.EndIdle(false, out data));
        }
开发者ID:digitalsoft,项目名称:hmailserver,代码行数:24,代码来源:Basics.cs

示例2: TestNotificationOnPOP3Deletion

        public void TestNotificationOnPOP3Deletion()
        {
            _settings.IMAPIdleEnabled = true;

             Account account = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "[email protected]", "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("[email protected]", "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);
        }
开发者ID:digitalsoft,项目名称:hmailserver,代码行数:49,代码来源:Basics.cs


注:本文中的RegressionTests.Shared.IMAPClientSimulator.GetPendingDataExists方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。