コード例 #1
0
        public void when_matching_of_queue_name_and_pattern_different_only_with_case_requested_it_should_return_false()
        {
            var          sut       = new RegexQueueNameMatcher();
            const string QueueName = "queue-name";

            sut.DoesMatch(QueueName, QueueName.ToUpper()).Should().BeFalse("case of queue name and pattern are the different");
        }
コード例 #2
0
        public void when_matching_of_queue_name_matching_pattern_requested_it_should_return_true()
        {
            var sut = new RegexQueueNameMatcher();

            sut.DoesMatch("queue-name", "^queue-name.*").Should().BeTrue("queue name matching the pattern");
            sut.DoesMatch("queue-name.some-suffix", "^queue-name.*").Should().BeTrue("queue name matching the pattern");
            sut.DoesMatch("sample.facts.case.v1", @"^sample\.(facts|commands)\.case\.v1").Should().BeTrue("queue name matching the pattern");
        }
コード例 #3
0
        public void when_matching_of_equal_queue_name_and_pattern_requested_it_should_return_true()
        {
            var sut       = new RegexQueueNameMatcher();
            var queueName = "queue-name";

            sut.DoesMatch(queueName, queueName).Should().BeTrue("queue name and pattern are the same");
            queueName = "$queue.name";
            sut.DoesMatch(queueName, queueName).Should().BeTrue("queue name and pattern are the same");
        }
コード例 #4
0
        public void when_matching_queue_name_pattern_is_null_empty_or_whitespace_it_should_throw()
        {
            var matcher = new RegexQueueNameMatcher();

            // ReSharper disable once AssignNullToNotNullAttribute
            new Action(() => matcher.DoesMatch("something", queueNamePattern: null))
            .Should().Throw <ArgumentNullException>("null is illegal as queue name pattern");
            new Action(() => matcher.DoesMatch("something", string.Empty))
            .Should().Throw <ArgumentNullException>("empty string is illegal as queue name pattern");
            new Action(() => matcher.DoesMatch("something", "    \n"))
            .Should().Throw <ArgumentNullException>("empty string is illegal as queue name pattern");
        }
コード例 #5
0
        public void when_matching_of_different_queue_name_and_pattern_requested_it_should_return_false()
        {
            var sut = new RegexQueueNameMatcher();

            sut.DoesMatch("queue-name", "queue-name-pattern").Should().BeFalse("queue name and pattern are the different");
        }