示例#1
0
        public void IdMatching_should_throw_ActivityAssertionFailedException_when_regex_matches_no_activities(string regex)
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldThrow <ActivityAssertionFailedException>();
        }
示例#2
0
        public void IdMatching_should_throw_ActivityAssertionFailedException_when_Id_of_all_activities_is_null()
        {
            var activities = Enumerable.Range(1, 5).Select(_ => new Activity()).ToList();

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.IdMatching(".*");

            act.ShouldThrow <ActivityAssertionFailedException>();
        }
示例#3
0
        public void IdMatching_should_pass_if_regex_exactly_matches_Id_of_at_least_1_activity_regardless_of_case(string text, string regex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(id: text);

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldNotThrow <Exception>();
        }
示例#4
0
        public void IdMatching_should_pass_when_using_standard_regex_features(string text, string regex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(id: text);

            var sut = new ActivitySetAssertions(activities);

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

            act.ShouldNotThrow <Exception>();
        }
示例#5
0
        public void IdMatching_should_pass_if_regex_exactly_matches_activity_Id_of_one_activity(string idAndRegex)
        {
            var activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(id: idAndRegex);

            var sut = new ActivitySetAssertions(activities);

            Action act = () => sut.IdMatching(idAndRegex);

            act.ShouldNotThrow <Exception>();
        }
示例#6
0
        public void IdMatching_should_throw_ArgumentNullException_if_regex_is_null()
        {
            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

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

            var activities = Enumerable.Range(1, 5).Select(_ => new Activity()).ToList();

            var sut = new ActivitySetAssertions(activities);

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

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

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

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

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

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

            var activities = ActivityTestData.CreateRandomActivities();

            var sut = new ActivitySetAssertions(activities);

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

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

            const string someId     = "some text";
            var          activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(id: someId);

            var sut = new ActivitySetAssertions(activities);

            sut.IdMatching(someId, $"({someId})", out matches);

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

            var activities = ActivityTestData.CreateRandomActivities();

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

            var sut = new ActivitySetAssertions(activities);

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

            matches.Should().Contain("some", "same", "text");
        }
示例#13
0
        public void IdMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_Id_several_times_for_a_single_activity()
        {
            IList <string> matches;

            const string someId     = "some text";
            var          activities = ActivityTestData.CreateActivitySetWithOneActivityThatHasSetProperties(id: someId);

            var sut = new ActivitySetAssertions(activities);

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

            sut.IdMatching(someId, $"({match1}) ({match2})", out matches);

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