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


C# ImapClientSimulator.Status方法代码示例

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


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

示例1: TestStatus

        public void TestStatus()
        {
            Account oAccount = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "[email protected]", "test");

             var oSimulator = new ImapClientSimulator();

             string sWelcomeMessage = oSimulator.Connect();
             oSimulator.Logon("[email protected]", "test");
             Assert.IsTrue(oSimulator.Status("Inbox", "MESSAGES").Contains("A08 OK"));
             oSimulator.Disconnect();
        }
开发者ID:baa-archieve,项目名称:hmailserver,代码行数:11,代码来源:Basics.cs

示例2: TestBeforeLogon

        public void TestBeforeLogon()
        {
            Account oAccount = SingletonProvider<TestSetup>.Instance.AddAccount(_domain, "[email protected]", "test");

             var oSimulator = new ImapClientSimulator();

             string sWelcomeMessage = oSimulator.Connect();

             Assert.IsTrue(oSimulator.ExamineFolder("NonexistantFolder").Contains("NO Authenticate first"));
             Assert.IsFalse(oSimulator.SelectFolder("NonexistantFolder"));
             Assert.IsFalse(oSimulator.Copy(1, "SomeFolder"));
             Assert.IsFalse(oSimulator.CheckFolder("SomeFolder"));
             Assert.IsTrue(oSimulator.Fetch("123 a").Contains("NO Authenticate first"));
             Assert.IsTrue(oSimulator.List().Contains("NO Authenticate first"));
             Assert.IsTrue(oSimulator.LSUB().Contains("NO Authenticate first"));
             Assert.IsTrue(oSimulator.GetMyRights("APA").Contains("NO Authenticate first"));
             Assert.IsFalse(oSimulator.RenameFolder("A", "B"));
             Assert.IsFalse(oSimulator.Status("SomeFolder", "MESSAGES").Contains("A01 OK"));
        }
开发者ID:baa-archieve,项目名称:hmailserver,代码行数:19,代码来源:Basics.cs

示例3: TestSaveMessageWithScriptAndMoveMessageWithGlobalRule

        public void TestSaveMessageWithScriptAndMoveMessageWithGlobalRule()
        {
            _settings.Scripting.Enabled = true;

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

             var sim = new ImapClientSimulator();
             Assert.IsTrue(sim.ConnectAndLogon(testAccount.Address, "test"));

             // First deliver two messages to the inbox.
             SmtpClientSimulator.StaticSend(testAccount.Address, testAccount.Address, "Test", "Test");
             Pop3ClientSimulator.AssertMessageCount(testAccount.Address, "test", 1);
             IMAPFolder inboxFolder = testAccount.IMAPFolders[0];
             Assert.AreEqual(1, inboxFolder.CurrentUID);
             Assert.AreEqual(1, inboxFolder.Messages[0].UID);
             Assert.IsTrue(sim.Status("INBOX", "UIDNEXT").Contains("UIDNEXT 2"));

             SmtpClientSimulator.StaticSend(testAccount.Address, testAccount.Address, "Test", "Test");
             Pop3ClientSimulator.AssertMessageCount(testAccount.Address, "test", 2);
             Assert.AreEqual(2, inboxFolder.CurrentUID);
             Assert.AreEqual(2, inboxFolder.Messages[1].UID);
             Assert.IsTrue(sim.Status("INBOX", "UIDNEXT").Contains("UIDNEXT 3"));

             CreateMessageModificationRule(_application.Rules);
             CreateMoveRule(_application.Rules, "TestFolder");

             // This message will be moved into the test folder.
             SmtpClientSimulator.StaticSend(testAccount.Address, testAccount.Address, "Test", "Test");

             // Wait for the message to arrive.
             CustomAsserts.AssertFolderExists(testAccount.IMAPFolders, "TestFolder");
             IMAPFolder testFolder = testAccount.IMAPFolders.get_ItemByName("TestFolder");
             CustomAsserts.AssertFolderMessageCount(testFolder, 1);

             // Inbox UID should not have changed since nothing has been added to the inbox.
             Assert.IsTrue(sim.Status("INBOX", "UIDNEXT").Contains("UIDNEXT 3"));

             // Since the message is placed in a new folder, it should receive a unique UID.
             string status = sim.Status("TestFolder", "UIDNEXT");
             Assert.IsTrue(status.Contains("UIDNEXT 2"), status);
             Assert.AreEqual(1, testFolder.CurrentUID);
             Assert.AreEqual(1, testFolder.Messages[0].UID);
        }
开发者ID:SpivEgin,项目名称:hmailserver,代码行数:44,代码来源:MessageUids.cs


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