Exemple #1
0
        public void WithButtons_should_return_CardActionSetAssertions()
        {
            var buttons    = CardActionTestData.CreateRandomCardActions();
            var signinCard = new SigninCard(buttons: buttons);

            var sut = new SigninCardAssertions(signinCard);

            sut.WithButtons().Should().BeAssignableTo <CardActionSetAssertions>().And.NotBeNull();
        }
Exemple #2
0
        public void TextMatching_should_throw_SigninCardAssertionFailedException_for_non_matching_regexes(string cardText, string regex)
        {
            var signinCard = new SigninCard(text: cardText);

            var sut = new SigninCardAssertions(signinCard);

            Action act = () => sut.TextMatching(regex);

            act.ShouldThrow <SigninCardAssertionFailedException>();
        }
Exemple #3
0
        public void TextMatching_should_pass_when_using_standard_regex_features(string cardText, string regex)
        {
            var signinCard = new SigninCard(text: cardText);

            var sut = new SigninCardAssertions(signinCard);

            Action act = () => sut.TextMatching(regex);

            act.ShouldNotThrow <Exception>();
        }
Exemple #4
0
        public void TextMatching_should_pass_regardless_of_case(string cardText, string regex)
        {
            var signinCard = new SigninCard(text: cardText);

            var sut = new SigninCardAssertions(signinCard);

            Action act = () => sut.TextMatching(regex);

            act.ShouldNotThrow <Exception>();
        }
Exemple #5
0
        public void TextMatching_should_pass_if_regex_exactly_matches_message_Text(string cardTextAndRegex)
        {
            var signinCard = new SigninCard(text: cardTextAndRegex);

            var sut = new SigninCardAssertions(signinCard);

            Action act = () => sut.TextMatching(cardTextAndRegex);

            act.ShouldNotThrow <Exception>();
        }
Exemple #6
0
        public void TextMatching_should_throw_ArgumentNullException_if_regex_is_null()
        {
            var card = new SigninCard();

            var sut = new SigninCardAssertions(card);

            Action act = () => sut.TextMatching(null);

            act.ShouldThrow <ArgumentNullException>();
        }
Exemple #7
0
        public void TextMatching_should_throw_SigninCardAssertionFailedException_when_text_is_null()
        {
            var card = new SigninCard();

            var sut = new SigninCardAssertions(card);

            Action act = () => sut.TextMatching("anything");

            act.ShouldThrow <SigninCardAssertionFailedException>();
        }
Exemple #8
0
        public void TextMatching_should_throw_SigninCardAssertionFailedException_when_trying_to_capture_groups_but_text_is_null()
        {
            IList <string> matches;
            var            card = new SigninCard();

            var sut = new SigninCardAssertions(card);

            Action act = () => sut.TextMatching("anything", "(.*)", out matches);

            act.ShouldThrow <SigninCardAssertionFailedException>();
        }
Exemple #9
0
        public void TextMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_text()
        {
            IList <string> matches;

            var signinCard = new SigninCard(text: "some text");

            var sut = new SigninCardAssertions(signinCard);

            sut.TextMatching("some text", "(non matching)", out matches);

            matches.Should().BeNull();
        }
Exemple #10
0
        public void TextMatching_should_throw_ArgumentNullException_if_groupMatchRegex_is_null()
        {
            IList <string> matches;

            var card = new SigninCard();

            var sut = new SigninCardAssertions(card);

            Action act = () => sut.TextMatching("(.*)", null, out matches);

            act.ShouldThrow <ArgumentNullException>();
        }
Exemple #11
0
        public void TextMatching_should_output_matches_when_groupMatchingRegex_matches_text()
        {
            IList <string> matches;

            const string someText   = "some text";
            var          signinCard = new SigninCard(text: someText);

            var sut = new SigninCardAssertions(signinCard);

            sut.TextMatching(someText, $"({someText})", out matches);

            matches.First().Should().Be(someText);
        }
Exemple #12
0
        public void TextMatching_should_not_output_matches_when_regex_does_not_match_text()
        {
            IList <string> matches = null;

            var signinCard = new SigninCard(text: "some text");

            var sut = new SigninCardAssertions(signinCard);

            Action act = () => sut.TextMatching("non matching regex", "(some text)", out matches);

            act.ShouldThrow <SigninCardAssertionFailedException>();
            matches.Should().BeNull();
        }
Exemple #13
0
        public void TextMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_text_several_times()
        {
            IList <string> matches;

            const string someText   = "some text";
            var          signinCard = new SigninCard(text: someText);

            var sut = new SigninCardAssertions(signinCard);

            const string match1 = "some";
            const string match2 = "text";

            sut.TextMatching(someText, $"({match1}) ({match2})", out matches);

            matches.Should().Contain(match1, match2);
        }