Exemplo n.º 1
0
        public void WithInValidUserNameShouldThrowException()
        {
            // Arrange
            var client = new MagentoApi()
                .Initialize(Url, ConsumerKey, ConsumerSecret)
                .SetCustomAdminUrlPart(CustomAdminUrlPart);

            // Act & assert
            Assert.Throws<MagentoApiException>(() => client.AuthenticateAdmin("y", "z"));
        }
Exemplo n.º 2
0
        public void WithInValidUrlShouldThrowException()
        {
            // Arrange
            var client = new MagentoApi()
                .Initialize("http://some.invalid.url.123.be", "w", "x")
                .SetCustomAdminUrlPart("");

            // Act & assert
            Assert.Throws<MagentoApiException>(() => client.AuthenticateAdmin("y", "z"));
        }
Exemplo n.º 3
0
        public void WithInValidPasswordShouldThrowException()
        {
            // Arrange
            var client = new MagentoApi()
                         .Initialize(Url, ConsumerKey, ConsumerSecret)
                         .SetCustomAdminUrlPart(CustomAdminUrlPart);

            // Act & assert
            Assert.Throws <MagentoApiException>(() => client.AuthenticateAdmin(UserName, "z"));
        }
Exemplo n.º 4
0
        public void WithInValidAdminUrlPartShouldThrowException()
        {
            // Arrange
            var client = new MagentoApi()
                         .Initialize(Url, ConsumerKey, ConsumerSecret)
                         .SetCustomAdminUrlPart("invalidcustomadminurlpart");

            // Act & assert
            Assert.Throws <MagentoApiException>(() => client.AuthenticateAdmin("y", "z"));
        }
Exemplo n.º 5
0
        public void WithInValidConsumerKeyShouldThrowException()
        {
            // Arrange
            var client = new MagentoApi()
                         .Initialize(Url, "w", "x")
                         .SetCustomAdminUrlPart("");

            // Act & assert
            Assert.Throws <MagentoApiException>(() => client.AuthenticateAdmin("y", "z"));
        }
Exemplo n.º 6
0
        public void WithInValidUrlShouldThrowException()
        {
            // Arrange
            var client = new MagentoApi()
                         .Initialize("http://some.invalid.url.123.be", "w", "x")
                         .SetCustomAdminUrlPart("");

            // Act & assert
            Assert.Throws <MagentoApiException>(() => client.AuthenticateAdmin("y", "z"));
        }