public void ValueMatching_should_throw_CardActionAssertionFailedException_when_regex_matches_no_cards(string regex) { var cardActions = CardActionTestData.CreateRandomCardActions(); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(regex); act.ShouldThrow <CardActionAssertionFailedException>(); }
public void ValueMatching_should_throw_CardActionAssertionFailedException_when_Value_of_all_cards_is_null() { var cardActions = Enumerable.Range(1, 5).Select(_ => new CardAction()).ToList(); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(".*"); act.ShouldThrow <CardActionAssertionFailedException>(); }
public void ValueMatching_should_pass_if_regex_exactly_matches_Value_of_at_least_1_card_regardless_of_case(string value, string regex) { var cardActions = CardActionTestData.CreateCardActionSetWithOneActionThatHasSetProperties(value: value); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(regex); act.ShouldNotThrow <Exception>(); }
public void ValueMatching_should_pass_when_using_standard_regex_features(string value, string regex) { var cardActions = CardActionTestData.CreateCardActionSetWithOneActionThatHasSetProperties(value: value); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(regex); act.ShouldNotThrow <Exception>(); }
public void ValueMatching_should_pass_if_regex_exactly_matches_message_Value_of_one_card(string cardValueAndRegex) { var cardActions = CardActionTestData.CreateCardActionSetWithOneActionThatHasSetProperties(value: cardValueAndRegex); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(cardValueAndRegex); act.ShouldNotThrow <Exception>(); }
public void ValueMatching_should_throw_ArgumentNullException_if_regex_is_null() { var cardActions = CardActionTestData.CreateRandomCardActions(); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(null); act.ShouldThrow <ArgumentNullException>(); }
public void ValueMatching_should_throw_CardActionAssertionFailedException_when_trying_to_capture_groups_but_Value_of_all_cards_is_null() { IList <string> matches; var cardActions = Enumerable.Range(1, 5).Select(_ => new CardAction()).ToList(); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching(".*", "(.*)", out matches); act.ShouldThrow <CardActionAssertionFailedException>(); }
public void ValueMatching_should_throw_ArgumentNullException_if_groupMatchRegex_is_null() { IList <string> matches; var cardActions = CardActionTestData.CreateRandomCardActions(); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching("(.*)", null, out matches); act.ShouldThrow <ArgumentNullException>(); }
public void ValueMatching_should_not_output_matches_when_groupMatchingRegex_does_not_match_Value_of_any_card() { IList <string> matches; var cardActions = CardActionTestData.CreateRandomCardActions(); var sut = new CardActionSetAssertions(cardActions); sut.ValueMatching(".*", "(non matching)", out matches); matches.Should().BeNull(); }
public void ValueMatching_should_not_output_matches_when_regex_does_not_match_Value_of_any_cards() { IList <string> matches = null; var cardActions = CardActionTestData.CreateRandomCardActions(); var sut = new CardActionSetAssertions(cardActions); Action act = () => sut.ValueMatching("non matching regex", "(some text)", out matches); act.ShouldThrow <CardActionAssertionFailedException>(); matches.Should().BeNull(); }
public void ValueMatching_should_output_matches_when_groupMatchingRegex_matches_Value_of_any_card() { IList <string> matches; const string someValue = "some text"; var cardActions = CardActionTestData.CreateCardActionSetWithOneActionThatHasSetProperties(value: someValue); var sut = new CardActionSetAssertions(cardActions); sut.ValueMatching(someValue, $"({someValue})", out matches); matches.First().Should().Be(someValue); }
public void ValueMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_Value_on_multiple_cards() { IList <string> matches; var cardActions = CardActionTestData.CreateRandomCardActions(); cardActions.Add(new CardAction(value: "some text")); cardActions.Add(new CardAction(value: "same text")); var sut = new CardActionSetAssertions(cardActions); sut.ValueMatching(".*", @"(s[oa]me) (text)", out matches); matches.Should().Contain("some", "same", "text"); }
public void ValueMatching_should_output_multiple_matches_when_groupMatchingRegex_matches_Value_several_times_for_a_single_card() { IList <string> matches; const string someValue = "some text"; var cardActions = CardActionTestData.CreateCardActionSetWithOneActionThatHasSetProperties(value: someValue); var sut = new CardActionSetAssertions(cardActions); const string match1 = "some"; const string match2 = "text"; sut.ValueMatching(someValue, $"({match1}) ({match2})", out matches); matches.Should().Contain(match1, match2); }