Esempio n. 1
0
    def test_search_two_words(self):
        sear_words = ['qwer', 'wert']
        text = ['Hello, qwer! How are you?', 'It\'s me.']
        self.assertEqual([('qwer', 1, 2, 0)],
                         search_for_entries(text, sear_words, ''))

        sear_words = ['qwer', 'wert']
        text = ['Hello, qwer! How are you?', 'It\'s wert.']
        self.assertEqual([('qwer', 1, 2, 0), ('wert', 2, 2, 0)],
                         search_for_entries(text, sear_words, ''))
Esempio n. 2
0
    def test_search_one_word(self):
        sear_words = ['asd']
        text = ['123', 'asd']
        self.assertEqual([('asd', 2, 1, 0)],
                         search_for_entries(text, sear_words, ''))

        sear_words = ['a']
        text = ['a 123 = 123 a', 'aa ', 'tra-ta-ta']
        self.assertEqual([('a', 1, 1, 0), ('a', 1, 4, 0), ('aa', 2, 1, 1)],
                         search_for_entries(text, sear_words, ''))
Esempio n. 3
0
    def test_case_insensitivity(self):
        sear_words = ['abc']
        text = ['abc', 'Abc', 'ABc', 'ABC', 'aBC']
        self.assertEqual([('abc', 1, 1, 0), ('Abc', 2, 1, 0), ('ABc', 3, 1, 0),
                          ('ABC', 4, 1, 0), ('aBC', 5, 1, 0)],
                         search_for_entries(text, sear_words, ''))

        sear_words = ['AsF']
        text = ['asf', 'asd']
        self.assertEqual([('asf', 1, 1, 0), ('asd', 2, 1, 1)],
                         search_for_entries(text, sear_words, ''))
Esempio n. 4
0
 def test_search_many_entered(self):
     sear_words = ['a']
     text = []
     for i in range(500):
         text.append('ab')
     self.assertEqual([('ab', i + 1, 1, 1) for i in range(500)],
                      search_for_entries(text, sear_words, ''))
Esempio n. 5
0
 def test_search_very_many_entered(self):
     sear_words = ['a']
     text = []
     for i in range(500):
         text.append('a ' * 100)
     self.assertEqual([('a', i + 1, j + 1, 0) for i in range(500)
                       for j in range(100)],
                      search_for_entries(text, sear_words, ''))
Esempio n. 6
0
    def test_line_break(self):
        sear_words = ['hello']
        text = ['hel-', 'lo']
        self.assertEqual([('hello', 1, 1, 0)],
                         search_for_entries(text, sear_words, ''))

        sear_words = ['hello']
        text = ['hel-as', 'lo']
        self.assertEqual([], search_for_entries(text, sear_words, ''))

        sear_words = ['hello']
        text = ['hel-', '', 'lo']
        self.assertEqual([], search_for_entries(text, sear_words, ''))

        sear_words = ['hello']
        text = ['asd hel-', 'lo']
        self.assertEqual([('hello', 1, 2, 0)],
                         search_for_entries(text, sear_words, ''))

        sear_words = ['asd-hello']
        text = ['asd-hel-', 'lo']
        self.assertEqual([('asd-hello', 1, 1, 0)],
                         search_for_entries(text, sear_words, ''))

        sear_words = ['hello', 'lines']
        text = ['hel-', 'lo li-', 'nes']
        self.assertEqual([('hello', 1, 1, 0), ('lines', 2, 2, 0)],
                         search_for_entries(text, sear_words, ''))
Esempio n. 7
0
 def test_empty_text(self):
     sear_words = []
     text = ['a']
     with self.assertRaises(ValueError):
         search_for_entries(text, sear_words, '')
Esempio n. 8
0
 def test_search_zero_words(self):
     sear_words = ['asd']
     text = ['123', 'aassd']
     self.assertEqual([], search_for_entries(text, sear_words, ''))
Esempio n. 9
0
 def test_empty_list_of_words(self):
     sear_words = ['8']
     text = []
     with self.assertRaises(ValueError):
         search_for_entries(text, sear_words, '')