/Orchard.Test/Orchard.Test/Modules/Users/Auto/FilterUsersByKeyword.cs
http://orchardqa.codeplex.com · C# · 78 lines · 43 code · 9 blank · 26 comment · 0 complexity · fc07c426dab0c6e41cf6aa78c97c178c MD5 · raw file
- /*
- Copyright (c) 2010, hiSoft
- All rights reserved.
-
- Redistribution and use in source and binary forms, with or without
- modification, are permitted provided that the following conditions are met:
- * Redistributions of source code must retain the above copyright
- notice, this list of conditions and the following disclaimer.
- * Redistributions in binary form must reproduce the above copyright
- notice, this list of conditions and the following disclaimer in the
- documentation and/or other materials provided with the distribution.
- * Neither the name of the hiSoft nor the
- names of its contributors may be used to endorse or promote products
- derived from this software without specific prior written permission.
-
- THIS SOFTWARE IS PROVIDED BY THE HISOFT AND CONTRIBUTORS "AS IS" AND
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
- DISCLAIMED. IN NO EVENT SHALL HISOFT BE LIABLE FOR ANY
- DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
- */
-
- using System;
- using Microsoft.VisualStudio.TestTools.UnitTesting;
- using Orchard.Test.Library;
- using Selenium;
-
- namespace Orchard.Test.Modules.Users.Auto
- {
- [TestClass]
- public class FilterUsersByKeyword
- {
- private TestLibrary TestLibrary;
- private ISelenium selenium;
-
- [TestInitialize]
- public void SetupTest()
- {
- TestLibrary = TestLibrary.SetupTest(this.ToString());
- selenium = TestLibrary.Selenium;
- }
-
- [TestCleanup]
- public void TeardownTest()
- {
- TestLibrary.ShutDown();
- }
-
- [TestMethod]
- public void User_FilterUsersByKeyword()
- {
- TestLibrary.UserHelper.LogOnAsAdmin();
- var user1 = TestLibrary.UserHelper.AddUser(new UserSettings() { UserName = "user1", Email = "1email@microsoft.com" });
- var user2 = TestLibrary.UserHelper.AddUser(new UserSettings() { UserName = "user2", Email = "2email@microsoft.com" });
-
- TestLibrary.UserHelper.FilterUsersByKeyword("user");
- Assert.IsTrue(TestLibrary.UserHelper.IsUsernamePresent(user1));
- Assert.IsTrue(TestLibrary.UserHelper.IsUsernamePresent(user2));
-
- TestLibrary.UserHelper.FilterUsersByKeyword("email");
- Assert.IsTrue(TestLibrary.UserHelper.IsUsernamePresent(user1));
- Assert.IsTrue(TestLibrary.UserHelper.IsUsernamePresent(user2));
-
- TestLibrary.UserHelper.FilterUsersByKeyword("user1");
- Assert.IsTrue(TestLibrary.UserHelper.IsUsernamePresent(user1));
- Assert.IsFalse(TestLibrary.UserHelper.IsUsernamePresent(user2));
-
- TestLibrary.UserHelper.FilterUsersByKeyword("2email");
- Assert.IsFalse(TestLibrary.UserHelper.IsUsernamePresent(user1));
- Assert.IsTrue(TestLibrary.UserHelper.IsUsernamePresent(user2));
- }
- }
- }