BloomTests.WebLibraryIntegration.BloomParseClientTests.CreateDeleteAndLogin C# (CSharp) Method

CreateDeleteAndLogin() private method

private CreateDeleteAndLogin ( ) : void
return void
        public void CreateDeleteAndLogin()
        {
            var accountInstanceId = Guid.NewGuid().ToString();
            var account = string.Format("mytest-{0}@example.com", accountInstanceId);
            var titleCaseAccount = string.Format("Mytest-{0}@example.com", accountInstanceId);
            var titleCaseDomain = string.Format("Mytest-{0}@Example.com", accountInstanceId);;

            if (_client.LogIn(account, "nonsense"))
                _client.DeleteCurrentUser();
            Assert.That(_client.LogIn(account, "nonsense"), Is.False);
            Assert.That(_client.UserExists(account), Is.False);

            _client.CreateUser(account, "nonsense");
            Assert.That(_client.LogIn(account, "nonsense"), Is.True);
            Assert.That(_client.LogIn(titleCaseAccount, "nonsense"), Is.True, "login is not case-independent");
            Assert.That(_client.UserExists(account), Is.True);
            Assert.That(_client.UserExists(titleCaseAccount), Is.True, "UserExists is not case-independent");

            _client.DeleteCurrentUser();
            Assert.That(_client.LoggedIn, Is.False);
            Assert.That(_client.UserExists(account), Is.False);
            Assert.That(_client.LogIn(account, "nonsense"), Is.False);

            _client.CreateUser(titleCaseDomain, "nonsense");
            Assert.That(_client.LogIn(titleCaseAccount, "nonsense"), Is.True, "CreateUser is not case-independent");
            Assert.That(_client.LogIn(account, "nonsense"), Is.True, "CreateUser is not case-independent");
            Assert.That(_client.UserExists(titleCaseDomain), Is.True);
            Assert.That(_client.UserExists(titleCaseAccount), Is.True, "UserExists is not case-independent");

            _client.DeleteCurrentUser();
            Assert.That(_client.LoggedIn, Is.False);
            Assert.That(_client.LogIn(account, "nonsense"), Is.False);
        }