示例#1
0
        public void ImageMatching_should_pass_when_using_standard_regex_features(string image, string regex)
        {
            var cardAction = new CardAction(image: image);

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldNotThrow <Exception>();
        }
示例#2
0
        public void ImageMatching_should_throw_CardActionAssertionFailedException_for_non_matching_regexes(string image, string regex)
        {
            var cardAction = new CardAction(image: image);

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldThrow <CardActionAssertionFailedException>();
        }
示例#3
0
        public void ImageMatching_should_pass_if_regex_exactly_matches_image_image(string imageAndRegex)
        {
            var cardAction = new CardAction(image: imageAndRegex);

            var sut = new CardActionAssertions(cardAction);

            Action act = () => sut.ImageMatching(imageAndRegex);

            act.ShouldNotThrow <Exception>();
        }
示例#4
0
        public void ImageMatching_should_pass_regardless_of_case(string image, string regex)
        {
            var cardAction = new CardAction(image: image);

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldNotThrow <Exception>();
        }
示例#5
0
        public void ImageMatching_should_throw_CardActionAssertionFailedException_when_text_is_null()
        {
            var cardAction = new CardAction();

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldThrow <CardActionAssertionFailedException>();
        }
示例#6
0
        public void ImageMatching_should_throw_ArgumentNullException_when_regex_is_null()
        {
            var cardAction = new CardAction(image: "some text");

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldThrow <ArgumentNullException>();
        }
示例#7
0
        public void ImageMatching_should_throw_CardActionAssertionFailedException_when_trying_to_capture_groups_but_text_is_null()
        {
            IList <string> matches;
            var            cardAction = new CardAction();

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldThrow <CardActionAssertionFailedException>();
        }
示例#8
0
        public void ImageMatching_should_throw_ArgumentNullException_when_groupMatchRegex_is_null()
        {
            IList <string> matches;

            var cardAction = new CardAction(image: "some text");

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldThrow <ArgumentNullException>();
        }
示例#9
0
        public void ImageMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_text()
        {
            IList <string> matches;

            var cardAction = new CardAction(image: "some text");

            var sut = new CardActionAssertions(cardAction);

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

            matches.Should().BeNull();
        }
示例#10
0
        public void ImageMatching_should_not_output_matches_when_regex_does_not_match_text()
        {
            IList <string> matches = null;

            var cardAction = new CardAction(image: "some text");

            var sut = new CardActionAssertions(cardAction);

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

            act.ShouldThrow <CardActionAssertionFailedException>();
            matches.Should().BeNull();
        }
示例#11
0
        public void ImageMatching_should_output_matches_when_groupMatchingRegex_matches_text()
        {
            IList <string> matches;

            const string someText   = "some text";
            var          cardAction = new CardAction(image: someText);

            var sut = new CardActionAssertions(cardAction);

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

            matches.First().Should().Be(someText);
        }
示例#12
0
        public void ImageMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_text_several_times()
        {
            IList <string> matches;

            const string someText   = "some text";
            var          cardAction = new CardAction(image: someText);

            var sut = new CardActionAssertions(cardAction);

            var match1 = "some";
            var match2 = "text";

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

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