Ejemplo n.º 1
0
        public void Attachment_should_return_ActivitySetAttachmentAssertions()
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            sut.WithAttachment().Should().BeAssignableTo <ActivitySetAttachmentAssertions>().And.NotBeNull();
        }
Ejemplo n.º 2
0
        public void FromMatching_should_throw_ActivityAssertionFailedException_when_regex_matches_no_activities(string regex)
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldThrow <ActivityAssertionFailedException>();
        }
Ejemplo n.º 3
0
        public void FromMatching_should_pass_when_using_standard_regex_features(string text, string regex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(fromProperty: text);

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldNotThrow <Exception>();
        }
Ejemplo n.º 4
0
        public void FromMatching_should_pass_if_regex_exactly_matches_From_of_at_least_1_activity_regardless_of_case(string text, string regex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(fromProperty: text);

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldNotThrow <Exception>();
        }
Ejemplo n.º 5
0
        public void FromMatching_should_pass_if_regex_exactly_matches_activity_From_of_one_activity(string fromAndRegex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(fromProperty: fromAndRegex);

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.FromMatching(fromAndRegex);

            act.ShouldNotThrow <Exception>();
        }
Ejemplo n.º 6
0
        public void FromMatching_should_throw_ArgumentNullException_if_regex_is_null()
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldThrow <ArgumentNullException>();
        }
Ejemplo n.º 7
0
        public void FromMatching_should_throw_ArgumentNullException_if_groupMatchRegex_is_null()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldThrow <ArgumentNullException>();
        }
Ejemplo n.º 8
0
        public void FromMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_From_of_any_activity()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

            sut.FromMatching(".*", "(non matching)", out matches);

            matches.Should().BeNull();
        }
Ejemplo n.º 9
0
        public void IdMatching_should_throw_ArgumentNullException_when_capturing_groups_if_regex_is_null()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldThrow <ArgumentNullException>();
        }
Ejemplo n.º 10
0
        public void FromMatching_should_not_output_matches_when_regex_does_not_match_From_of_any_activities()
        {
            IList <string> matches = null;

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldThrow <ActivityAssertionFailedException>();
            matches.Should().BeNull();
        }
Ejemplo n.º 11
0
        public void FromMatching_should_output_matches_when_groupMatchingRegex_matches_From_of_any_activity()
        {
            IList <string> matches;

            const string someFrom   = "some text";
            var          activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(fromProperty: someFrom);

            var sut = new ActivitySetAssertions(activities);

            sut.FromMatching(someFrom, $"({someFrom})", out matches);

            matches.First().Should().Be(someFrom);
        }
Ejemplo n.º 12
0
        public void Extracted_signin_cards_are_used_to_create_signin_card_set_assertions()
        {
            var signinCards = SigninCardTestData.CreateRandomSigninCards();

            _extractor.ExtractCards <SigninCard>(Arg.Any <IEnumerable <Activity> >()).Returns(signinCards);

            var sut = new ActivitySetAttachmentAssertions(ActivityTestData.CreateRandomActivities());

            var result = sut.OfTypeSigninCard();

            result.Should().BeAssignableTo <SigninCardSetAssertions>();
            var assertions = (SigninCardSetAssertions)result;

            assertions.SigninCards.ShouldBeEquivalentTo(signinCards);
        }
Ejemplo n.º 13
0
        public void FromMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_From_on_multiple_activities()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            activities.Add(new Activity(fromProperty: new ChannelAccount(name: "some text")));
            activities.Add(new Activity(fromProperty: new ChannelAccount(name: "same text")));

            var sut = new ActivitySetAssertions(activities);

            sut.FromMatching(".*", @"(s[oa]me) (text)", out matches);

            matches.Should().Contain("some", "same", "text");
        }
Ejemplo n.º 14
0
        public void TextMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_Text_on_multiple_activities()
        {
            IList <string> matches;

            var activities = ActivityTestData.CreateRandomActivities();

            activities.Add(new Activity(text: "some text"));
            activities.Add(new Activity(text: "same text"));

            var sut = new ActivitySetAssertions(activities);

            sut.TextMatching(".*", @"(s[oa]me) (text)", out matches);

            matches.Should().Contain("some", "same", "text");
        }
Ejemplo n.º 15
0
        public void FromMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_From_several_times_for_a_single_activity()
        {
            IList <string> matches;

            const string someFrom   = "some text";
            var          activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(fromProperty: someFrom);

            var sut = new ActivitySetAssertions(activities);

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

            sut.FromMatching(someFrom, $"({match1}) ({match2})", out matches);

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