Ejemplo n.º 1
0
    def test_the_index_of_a_cmdset_with_an_lsa_and_a_csc_in_it(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do one csc and one lsa:
        cmds = CmdSet("commands set")
        cmds.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))
        cmds.add_csc(
            CSCmd(["equals"],
                  meanings={contAny: ActionInsert("====")},
                  name="equals csc"))

        interp.add_cmd_set(cmds)
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
    {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                    'doc': None,
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': None,
                    'setname': 'commands set'}]],
        'plus': [{'name': 'plus sign',
                 'new_symbol': None,
                 'setdescription': 'no description',
                 'setname': 'commands set',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of one CSC and one LSA command is not as expected")
Ejemplo n.º 2
0
 def test_This_is_how_you_create_a_WhatCanISay_instance(self):
     wciSay = WhatCanISay.WhatCanISay()
     interp = CmdInterp()
     # load one lsa and one csc:
     interp.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}, name="equals csc"))
     interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
     wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
Ejemplo n.º 3
0
 def test_This_is_how_you_enter_and_get_info_through_CSCmdSet(self):
      interp = CmdInterp()
      actionHello = ActionInsert("csc hello")
      contAny = ContAny()
      cscs = CSCmdSet('csc demo set', description='description of csc demo set')
      cscs.add_csc(CSCmd(spoken_forms=['hello'],
                                  meanings={contAny: actionHello},
                                  docstring="hello in csc set"))
      interp.add_csc_set(cscs)
      wTrie = interp.commands
      for spoken, cscmd_list in wTrie.items():
          
          if spoken == ['hello']:
              cscmd_list_expected = [{'action': "Inserts 'csc hello^' in current buffer",
                                      'doc': 'hello in csc set',
                                      'equiv': 'Any',
                                      'scope': 'global',
                                      'setdescription': 'description of csc demo set',
                                      'setname': 'csc demo set'}]
          else:
              self.fail("should not come here, testing error, should have exactly 1 spoken form")
          visible_list = cscmd_list.get_info()
          self.assert_equal(cscmd_list_expected, visible_list,
                            'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
          break
      else:
          self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")
Ejemplo n.º 4
0
    def setUp(self):
        self.interp = CmdInterp()

        self.interp = CmdInterp()
        self.interp.add_lsa(
            LSAlias(lsa_multiply_spoken_forms, lsa_multiply_meanings))
        self.interp.add_lsa(LSAlias(lsa_not_spoken_forms, lsa_not_meanings))
Ejemplo n.º 5
0
    def test_This_is_how_you_can_make_a_special_case_for_one_language(self):

        interp = CmdInterp()        
##        In next test all languages are first set to "ccc",
##        and then for python is changed to 'qqq'.
        interp.add_lsa(LSAlias(['spoken', 'form'],
                                    {'python': 'qqq', all_languages:  'ccc'}))
                                                         
        all_lsas = interp.language_specific_aliases
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'qqq'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
        c_lsas = all_lsas['C']
        # extract and check only one item:
        for an_LSA in c_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ccc'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
Ejemplo n.º 6
0
    def test_This_is_how_you_create_a_LSAlias__instance(self):

        interp = CmdInterp()        

        interp.add_lsa(LSAlias(['spoken', 'form'],
                                    {'C':  'sss', 'python': 'ppp'}))
                                                         
        all_lsas = interp.language_specific_aliases
        languages = all_lsas.keys()
        languages.sort()
        expected = list(all_languages)  # list (of keys)
        self.assert_equal(expected, languages, "LSAs, all languages should have a key, this was not as expected")
        expected = all_languages  # tuple
        self.assert_equal(expected, interp.supported_languages(),
                          "LSAs, languages not as expected through interp method")
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ppp'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
Ejemplo n.º 7
0
  def test_the_index_of_a_cmdset_with_an_lsa_and_a_csc_in_it(self):
      wciSay = WhatCanISay.WhatCanISay()
      interp = CmdInterp()
      # the new CmdSet can contain both CSCs and LSAs...
      # do one csc and one lsa:
      cmds = CmdSet("commands set",  description="generic commands set")
      cmds.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
      # without docstring:
      cmds.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}))
      # with docstring:
      cmds.add_csc(CSCmd(["not equal"], meanings={contAny: ActionInsert(" != ")},
                         docstring="csc not equal"))
      
      interp.add_cmd_set(cmds)
      wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
      expected = \
 {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                  'doc': None,
                  'equiv': 'Any',
                  'scope': 'global',
                  'setdescription': 'generic commands set',
                  'setname': 'commands set'}]],
     'not equal': [[{'action': "Inserts ' != ^' in current buffer",
                     'doc': 'csc not equal',
                     'equiv': 'Any',
                     'scope': 'global',
                     'setdescription': 'generic commands set',
                     'setname': 'commands set'}]],
     'plus': [{'name': 'plus sign',
               'new_symbol': None,
               'setdescription': 'generic commands set',
               'setname': 'commands set',
               'spacing': 0,
               'written_form': ' + '}]}}
      self.assert_equal(expected, wciSay.index, "index of one CSC and one LSA command is not as expected")
Ejemplo n.º 8
0
    def test_Test_correct_order_of_CSCmdList1(self):
        interp = CmdInterp()
        actionHello = ActionInsert("csc hello")
        actionBlankLine = ActionInsert("csc blank")
        actionBeforeArguments = ActionInsert("csc before arguments")
        contBlankLine = ContBlankLine()
        contAny = ContAny()
        cscs = CSCmdSet('csc demo set',
                        description='description of csc demo set')
        # test the sorting of the csc :
        cscs.add_csc(
            CSCmd(spoken_forms=['hello'],
                  meanings={
                      ContBeforeArguments(all_languages):
                      actionBeforeArguments,
                      contAny: actionHello,
                      contBlankLine: actionBlankLine
                  },
                  docstring="hello in csc set testlist1"))
        interp.add_csc_set(cscs)
        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['hello']:
                cscmd_list_expected = \
  [{'action': "Inserts 'csc blank^' in current buffer",
                'doc': 'hello in csc set testlist1',
                'equiv': 'BlankLine: any',
                'scope': 'immediate',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'},
                {'action': "Inserts 'csc before arguments^' in current buffer",
                'doc': 'hello in csc set testlist1',
                'equiv': 'ContBeforeArguments: any',
                'scope': 'immediate',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'},
                {'action': "Inserts 'csc hello^' in current buffer",
                'doc': 'hello in csc set testlist1',
                'equiv': 'Any',
                'scope': 'global',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'}]

            else:
                self.fail(
                    "should not come here, testing error, should have exactly 1 spoken form"
                )
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))
            break
        else:
            self.fail(
                "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
            )
Ejemplo n.º 9
0
    def test_This_is_how_you_can_make_a_special_case_c_style_languages(self):

        interp = CmdInterp()
        ##        In next test all languages are first set to "aaa",
        ##        next c_style_languages to ccc, and
        ##        after that java and python to something more specific
        ##        and then for python is changed to 'qqq'.
        interp.add_lsa(
            LSAlias(
                ['spoken', 'form'], {
                    'java': 'jjj',
                    'python': 'pppp',
                    all_languages: 'aaa',
                    c_style_languages: 'ccc'
                }))

        all_lsas = interp.language_specific_aliases
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'pppp'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                              "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                              "LSA written form is not as expected")
            break
        c_lsas = all_lsas['C']
        # extract and check only one item:
        for an_LSA in c_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ccc'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                              "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                              "LSA written form is not as expected")
            break

        java_lsas = all_lsas['java']
        # extract and check only one item:
        for an_LSA in java_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'jjj'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                              "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                              "LSA written form is not as expected")
            break
Ejemplo n.º 10
0
    def test_Test_correct_order_of_CSCmdList_permutations_test(self):
        """Add meanings in different orders, placing in CSCmdList should be sorted right away"""
        actionHello = ActionInsert("csc hello")
        actionBlankLine = ActionInsert("csc blank")
        actionBeforeArguments = ActionInsert("csc before arguments")
        contBlankLine = ContBlankLine()
        contAny = ContAny()
        CAList = [(ContPyBeforeArguments(), actionBeforeArguments),
                  (contAny, actionHello), 
                  (contBlankLine, actionBlankLine)]

        for permutation in [(1,2,0), (2,0,1), (0,2,1), (1,0,2), (2,1,0), (0,1,2)]:
             interp = CmdInterp()
             CAListPermuted = [CAList[i] for i in permutation]
             cscs = CSCmdSet('csc demo set', description='description of csc demo set')
             # test the sorting of the csc. order of dict not important, always returning same CSCmdList:
             meanings = dict()
             for (c,a) in CAListPermuted:
                 meanings[c] = a
             csc = CSCmd(spoken_forms=['hello'],
                                     meanings=meanings,
                                     docstring="hello in csc test permutations")
             cscs.add_csc(csc)
             interp.add_csc_set(cscs)
             wTrie = interp.commands
             for spoken, cscmd_list in wTrie.items():
                 
                 if spoken == ['hello']:
                     cscmd_list_expected = \
  [{'action': "Inserts 'csc blank^' in current buffer",
  'doc': 'hello in csc test permutations',
  'equiv': 'BlankLine: any',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc before arguments^' in current buffer",
  'doc': 'hello in csc test permutations',
  'equiv': 'ContPyBeforeArguments: python',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc hello^' in current buffer",
  'doc': 'hello in csc test permutations',
  'equiv': 'Any',
  'scope': 'global',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'}]

                 else:
                     self.fail("should not come here, testing error, should have exactly 1 spoken form")
                 visible_list = cscmd_list.get_info()
                 self.assert_equal(cscmd_list_expected, visible_list,
                                   'wTrie CSCmdList of meanings with spoken form "%s" (permutation: %s) is not as expected'% \
                                   (repr(spoken), permutation))
                 break
             else:
                 self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")
Ejemplo n.º 11
0
    def test_builder_preferences_python(self):
        """This test should be made to work.  But I cannot get the right procedure here.

        This wasn't tested before.  Quintijn
        """
        interp = CmdInterp()
        interp.set_builder_preferences(['std_lower_intercaps', 'std_underscores', 'std_run_together'],
                        language=('python', 'javascript', 'php'))
        self._open_empty_test_file('temp.py')
        self._say("new variable equals old variable")
Ejemplo n.º 12
0
    def test_the_index_of_c_else_with_different_csc_set_name_as_python_else(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do a csc set for python and a csc set for c
        # note: for try all went well in C, except for the setname
        cscs1 = CSCmdSet('try command python', description='description of CSCS')
        cscs2 = CSCmdSet('try command C', description='description duplicates of CSCS')
        cscs2.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_c_else_meanings,
                           docstring=csc_c_else_docstring))
        cscs1.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_python_else_meanings,
                           docstring=csc_python_else_docstring))
        interp.add_csc_set(cscs2)
        interp.add_csc_set(cscs1)
        interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))

        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'else': [[{'action': 'else clause of a C conditional',
                  'doc': 'else clause only c',
                  'equiv': 'Language: C',
                  'scope': 'buffer',
                  'setdescription': 'description duplicates of CSCS',
                  'setname': 'try command C'}]],
       'plus': [{'description': 'no description',
                 'name': 'plus sign',
                 'new_symbol': None,
                 'setname': 'lsas',
                 'spacing': 0,
                 'written_form': ' + '}]}}                 
        self.assert_equal(expected, wciSay.index, "index of else csc set in C different from expected")

        wciSay.load_commands_from_interpreter(self._app(), interp, 'python')
        expected = \
   {'python': {'else': [[{'action': 'no docstring available',
                       'doc': 'else clause only python',
                       'equiv': 'BlankLine: python',
                       'scope': 'immediate',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'},
                      {'action': "Inserts 'else on non blank line^' in current buffer",
                       'doc': 'else clause only python',
                       'equiv': 'Language: python',
                       'scope': 'buffer',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'}]],
            'plus': [{'description': 'no description',
                      'name': 'plus sign',
                      'new_symbol': None,
                      'setname': 'lsas',
                      'spacing': 0,
                      'written_form': ' + '}]}}
        self.assert_equal(expected, wciSay.index, "index of else csc set in python different from expected")
Ejemplo n.º 13
0
    def test_This_is_how_you_can_make_a_special_case_c_style_languages(self):

        interp = CmdInterp()        
##        In next test all languages are first set to "aaa",
##        next c_style_languages to ccc, and
##        after that java and python to something more specific
##        and then for python is changed to 'qqq'.
        interp.add_lsa(LSAlias(['spoken', 'form'], 
                                    {'java': 'jjj','python': 'pppp', all_languages:  'aaa',
                                     c_style_languages: 'ccc'}))
                                                         
        all_lsas = interp.language_specific_aliases
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'pppp'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
        c_lsas = all_lsas['C']
        # extract and check only one item:
        for an_LSA in c_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ccc'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
    
        java_lsas = all_lsas['java']
        # extract and check only one item:
        for an_LSA in java_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'jjj'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
Ejemplo n.º 14
0
 def setUp(self):
     self.interp = CmdInterp()
     self.interp.add_csc(
         CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
               meanings=csc_with_arguments_meanings,
               docstring=csc_with_arguments_docstring))
     self.interp.add_csc(
         CSCmd(spoken_forms=csc_else_spoken_forms,
               meanings=csc_else_meanings,
               docstring=csc_else_docstring))
     self.interp.add_csc(
         CSCmd(spoken_forms=csc_equals_spoken_forms,
               meanings=csc_equals_meanings,
               docstring=csc_equals_docstring))
Ejemplo n.º 15
0
    def test_Test_erroneous_definitions(self):

        interp = CmdInterp()
        # unknown language 'D'
        self.assertRaises(ValueError, LSAlias, (['wrong'], ), {'D': 'oops'})
        self.assertRaises(DeprecationError, LSAlias, (['deprecated'], ),
                          {None: 'oops'})
Ejemplo n.º 16
0
    def test_Test_correct_order_of_CSCmdList1(self):
         interp = CmdInterp()
         actionHello = ActionInsert("csc hello")
         actionBlankLine = ActionInsert("csc blank")
         actionBeforeArguments = ActionInsert("csc before arguments")
         contBlankLine = ContBlankLine()
         contAny = ContAny()
         cscs = CSCmdSet('csc demo set', description='description of csc demo set')
         # test the sorting of the csc :
         cscs.add_csc(CSCmd(spoken_forms=['hello'],
                                     meanings={ContPyBeforeArguments(): actionBeforeArguments,
                                               contAny: actionHello,
                                               contBlankLine: actionBlankLine},
                                    docstring="hello in csc set testlist1"))                                 
         interp.add_csc_set(cscs)
         wTrie = interp.commands
         for spoken, cscmd_list in wTrie.items():
             
             if spoken == ['hello']:
                 cscmd_list_expected = \
   [{'action': "Inserts 'csc blank^' in current buffer",
  'doc': 'hello in csc set testlist1',
  'equiv': 'BlankLine: any',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc before arguments^' in current buffer",
  'doc': 'hello in csc set testlist1',
  'equiv': 'ContPyBeforeArguments: python',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc hello^' in current buffer",
  'doc': 'hello in csc set testlist1',
  'equiv': 'Any',
  'scope': 'global',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'}]

             else:
                 self.fail("should not come here, testing error, should have exactly 1 spoken form")
             visible_list = cscmd_list.get_info()
             self.assert_equal(cscmd_list_expected, visible_list,
                               'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
             break
         else:
             self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")
Ejemplo n.º 17
0
 def test_This_is_how_you_collect_all_the_CSC_commands_and_get_info(self):
      interp = CmdInterp()
      contAny = ContAny()
      actionHello = ActionInsert("hello")
      contBlankLine = ContBlankLine()
      actionThere = ActionInsert("there")
      actionOtherwise = ActionInsert("there otherwise")
      interp.add_csc(CSCmd(spoken_forms=['hello'],
                                  meanings={contAny: actionHello},
                                  docstring="hello"))
      
      interp.add_csc(CSCmd(spoken_forms=['there'],
                                  meanings={contBlankLine: actionThere,
                                            contAny: actionOtherwise},
                                  docstring="there on blankline or otherwise"))
      
      wTrie = interp.commands
      for spoken, cscmd_list in wTrie.items():
          
          if spoken == ['hello']:
              cscmd_list_expected = [{'action': "Inserts 'hello^' in current buffer",
                                      'doc': 'hello',
                                      'equiv': 'Any',
                                      'scope': 'global',
                                      'setdescription': 'no description',
                                      'setname': 'cscs'}]
          elif spoken == ['there']:
              cscmd_list_expected = [{'action': "Inserts 'there^' in current buffer",
                                      'doc': 'there on blankline or otherwise',
                                      'equiv': 'BlankLine: any',
                                      'scope': 'immediate',
                                      'setdescription': 'no description',
                                      'setname': 'cscs'},
                                     {'action': "Inserts 'there otherwise^' in current buffer",
                                      'doc': 'there on blankline or otherwise',
                                      'equiv': 'Any',
                                      'scope': 'global',
                                      'setdescription': 'no description',
                                      'setname': 'cscs'}]
          visible_list = cscmd_list.get_info()
          self.assert_equal(cscmd_list_expected, visible_list,
                            'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
Ejemplo n.º 18
0
 def setUp(self):
      self.interp = CmdInterp()
      self.interp.add_csc(CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                                 meanings=csc_with_arguments_meanings,
                                 docstring=csc_with_arguments_docstring))
      self.interp.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                                 meanings=csc_else_meanings,
                                 docstring=csc_else_docstring))
      self.interp.add_csc(CSCmd(spoken_forms=csc_equals_spoken_forms,
                                 meanings=csc_equals_meanings,
                                 docstring=csc_equals_docstring))
Ejemplo n.º 19
0
  def test_the_index_of_simple_csc_and_an_lsa_definition(self):
      wciSay = WhatCanISay.WhatCanISay()
      interp = CmdInterp()
      # do one csc and one lsa:
      interp.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}, name="equals csc"))
      interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
      wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
      expected = \
 {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                  'doc': None,
                  'equiv': 'Any',
                  'scope': 'global',
                  'setdescription': 'no description',
                  'setname': 'cscs'}]],
     'plus': [{'description': 'no description',
               'name': 'plus sign',
               'new_symbol': None,
               'setname': 'lsas',
               'spacing': 0,
               'written_form': ' + '}]}}
      self.assert_equal(expected, wciSay.index, "index of one CSC and one LSA command is not as expected")
Ejemplo n.º 20
0
    def test_This_is_how_you_enter_and_get_info_through_CSCmdSet(self):
        interp = CmdInterp()
        actionHello = ActionInsert("csc hello")
        contAny = ContAny()
        cscs = CSCmdSet('csc demo set',
                        description='description of csc demo set')
        cscs.add_csc(
            CSCmd(spoken_forms=['hello'],
                  meanings={contAny: actionHello},
                  docstring="hello in csc set"))
        interp.add_csc_set(cscs)
        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['hello']:
                cscmd_list_expected = [{
                    'action': "Inserts 'csc hello^' in current buffer",
                    'doc': 'hello in csc set',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'
                }]
            else:
                self.fail(
                    "should not come here, testing error, should have exactly 1 spoken form"
                )
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))
            break
        else:
            self.fail(
                "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
            )
Ejemplo n.º 21
0
    def setUp(self):
        print '\n=======setting up WhatCanISay test instance'
        self.wciSay = WhatCanISay.WhatCanISay()
        self.interp = CmdInterp()

        # lsa set:
        commands = CmdSet("mixed commands", description="description of commands")
        commands.add_lsa(LSAlias(lsa_multiply_spoken_forms, lsa_multiply_meanings, name="multiply"))
        commands.add_lsa(LSAlias(lsa_not_spoken_forms, lsa_not_meanings, name="not"))
        commands.add_lsa(LSAlias(lsa_not_duplicate_spoken_forms, lsa_not_meanings, name="not"))
        commands.add_lsa(LSAlias(lsa_equals_spoken_forms, lsa_equals_meanings, name="equals lsa"))
        # also add an equals csc to these commands:
        commands.add_csc(CSCmd(spoken_forms=csc_equals_spoken_forms,
                           meanings=csc_equals_meanings,
                           docstring=csc_equals_docstring))
        self.interp.add_cmd_set(commands)

        # csc set:
        cscs = CmdSet('csc commands', description='description of CSCS')
        cscs2 = CmdSet('csc commands too', description='description duplicates of CSCS')
        cscs.add_csc(CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                           meanings=csc_with_arguments_meanings,
                           docstring=csc_with_arguments_docstring))

        # here the tricky one: else only for python:        
        cscs.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_python_else_meanings,
                           docstring=csc_python_else_docstring))
        # else duplicate, only for python:
        cscs.add_csc(CSCmd(spoken_forms=csc_else_duplicate_spoken_forms,
                           meanings=csc_python_else_meanings,
                           docstring=csc_python_else_docstring))
        # csc_c_else_meanings only for c, group should be : csc commands too!

        # and in another set: else for c! should come in set cscs commands too!!!        
        cscs2.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_c_else_meanings,
                           docstring=csc_c_else_docstring))
        self.interp.add_csc_set(cscs)
        self.interp.add_csc_set(cscs2)
        

        # punctuation:
        punc = SinglePunctuation(name = 'standard punctuation')
        punc.add('%', ['percent-sign'])
        punc.create(self.interp)
        
        self.wciSay.load_commands_from_interpreter(self._app(), self.interp, 'python')
Ejemplo n.º 22
0
    def test_This_is_how_you_collect_all_the_CSC_commands_and_get_info(self):
        interp = CmdInterp()
        contAny = ContAny()
        actionHello = ActionInsert("hello")
        contBlankLine = ContBlankLine()
        actionThere = ActionInsert("there")
        actionOtherwise = ActionInsert("there otherwise")
        interp.add_csc(
            CSCmd(spoken_forms=['hello'],
                  meanings={contAny: actionHello},
                  docstring="hello"))

        interp.add_csc(
            CSCmd(spoken_forms=['there'],
                  meanings={
                      contBlankLine: actionThere,
                      contAny: actionOtherwise
                  },
                  docstring="there on blankline or otherwise"))

        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['hello']:
                cscmd_list_expected = [{
                    'action': "Inserts 'hello^' in current buffer",
                    'doc': 'hello',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'no description',
                    'setname': 'cscs'
                }]
            elif spoken == ['there']:
                cscmd_list_expected = [{
                    'action': "Inserts 'there^' in current buffer",
                    'doc': 'there on blankline or otherwise',
                    'equiv': 'BlankLine: any',
                    'scope': 'immediate',
                    'setdescription': 'no description',
                    'setname': 'cscs'
                }, {
                    'action': "Inserts 'there otherwise^' in current buffer",
                    'doc': 'there on blankline or otherwise',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'no description',
                    'setname': 'cscs'
                }]
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))
Ejemplo n.º 23
0
 def test_This_is_how_you_create_a_WhatCanISay_instance(self):
     wciSay = WhatCanISay.WhatCanISay()
     interp = CmdInterp()
     # load one lsa and one csc:
     interp.add_csc(
         CSCmd(["equals"],
               meanings={contAny: ActionInsert("====")},
               name="equals csc"))
     interp.add_lsa(
         LSAlias(["plus"],
                 meanings={all_languages: " + "},
                 name="plus sign"))
     wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
Ejemplo n.º 24
0
 def test_this_is_how_you_create_a_CmdInterp(self):
     interp = CmdInterp()
Ejemplo n.º 25
0
class CSCmdTest(VoiceCodeRootTest.VoiceCodeRootTest):
    """tests of CSCmd and CSCmdDict

    """
    
    def __init__(self, name):
        VoiceCodeRootTest.VoiceCodeRootTest.__init__(self, name)
        
    def setUp(self):
         self.interp = CmdInterp()
         self.interp.add_csc(CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                                    meanings=csc_with_arguments_meanings,
                                    docstring=csc_with_arguments_docstring))
         self.interp.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                                    meanings=csc_else_meanings,
                                    docstring=csc_else_docstring))
         self.interp.add_csc(CSCmd(spoken_forms=csc_equals_spoken_forms,
                                    meanings=csc_equals_meanings,
                                    docstring=csc_equals_docstring))


        
##########################################################
# Documentation tests
#
# These tests illustrate how to use the class.
##########################################################
        

    def test_This_is_how_you_create_a_CSCmd_instance(self):
         command1 = CSCmd(spoken_forms=['hello'],
                         meanings = {'python': ActionInsert('hello python'),
                                         'C': ActionInsert('hello C')})
         command2 = CSCmd(spoken_forms=['hello'],
                         meanings = {contPython: ActionInsert('hello python'),
                                         contC: ActionInsert('hello C')})
         command3 = CSCmd(spoken_forms=['hello'],
                         meanings = {ContLanguage('python'): ActionInsert('hello python'),
                                         ContLanguage('C'): ActionInsert('hello C')})
         self.assert_equal(command2, command1, \
                                 "Csc commands 2 and 1 should have been the same with different ways to define")
         self.assert_equal(command3, command1, \
                                 "Csc commands 3 and 1 should have been the same with different ways to define")


    def test_This_is_how_you_collect_all_the_CSC_commands_and_get_info(self):
         interp = CmdInterp()
         contAny = ContAny()
         actionHello = ActionInsert("hello")
         contBlankLine = ContBlankLine()
         actionThere = ActionInsert("there")
         actionOtherwise = ActionInsert("there otherwise")
         interp.add_csc(CSCmd(spoken_forms=['hello'],
                                     meanings={contAny: actionHello},
                                     docstring="hello"))
         
         interp.add_csc(CSCmd(spoken_forms=['there'],
                                     meanings={contBlankLine: actionThere,
                                               contAny: actionOtherwise},
                                     docstring="there on blankline or otherwise"))
         
         wTrie = interp.commands
         for spoken, cscmd_list in wTrie.items():
             
             if spoken == ['hello']:
                 cscmd_list_expected = [{'action': "Inserts 'hello^' in current buffer",
                                         'doc': 'hello',
                                         'equiv': 'Any',
                                         'scope': 'global',
                                         'setdescription': 'no description',
                                         'setname': 'cscs'}]
             elif spoken == ['there']:
                 cscmd_list_expected = [{'action': "Inserts 'there^' in current buffer",
                                         'doc': 'there on blankline or otherwise',
                                         'equiv': 'BlankLine: any',
                                         'scope': 'immediate',
                                         'setdescription': 'no description',
                                         'setname': 'cscs'},
                                        {'action': "Inserts 'there otherwise^' in current buffer",
                                         'doc': 'there on blankline or otherwise',
                                         'equiv': 'Any',
                                         'scope': 'global',
                                         'setdescription': 'no description',
                                         'setname': 'cscs'}]
             visible_list = cscmd_list.get_info()
             self.assert_equal(cscmd_list_expected, visible_list,
                               'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
             
    def test_This_is_how_you_enter_and_get_info_through_CSCmdSet(self):
         interp = CmdInterp()
         actionHello = ActionInsert("csc hello")
         contAny = ContAny()
         cscs = CSCmdSet('csc demo set', description='description of csc demo set')
         cscs.add_csc(CSCmd(spoken_forms=['hello'],
                                     meanings={contAny: actionHello},
                                     docstring="hello in csc set"))
         interp.add_csc_set(cscs)
         wTrie = interp.commands
         for spoken, cscmd_list in wTrie.items():
             
             if spoken == ['hello']:
                 cscmd_list_expected = [{'action': "Inserts 'csc hello^' in current buffer",
                                         'doc': 'hello in csc set',
                                         'equiv': 'Any',
                                         'scope': 'global',
                                         'setdescription': 'description of csc demo set',
                                         'setname': 'csc demo set'}]
             else:
                 self.fail("should not come here, testing error, should have exactly 1 spoken form")
             visible_list = cscmd_list.get_info()
             self.assert_equal(cscmd_list_expected, visible_list,
                               'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
             break
         else:
             self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")


##########################################################
# Unit tests lsa and general commands
#
# These tests check the internal workings of the class.
##########################################################



    def test_Test_correct_order_of_CSCmdList1(self):
         interp = CmdInterp()
         actionHello = ActionInsert("csc hello")
         actionBlankLine = ActionInsert("csc blank")
         actionBeforeArguments = ActionInsert("csc before arguments")
         contBlankLine = ContBlankLine()
         contAny = ContAny()
         cscs = CSCmdSet('csc demo set', description='description of csc demo set')
         # test the sorting of the csc :
         cscs.add_csc(CSCmd(spoken_forms=['hello'],
                                     meanings={ContPyBeforeArguments(): actionBeforeArguments,
                                               contAny: actionHello,
                                               contBlankLine: actionBlankLine},
                                    docstring="hello in csc set testlist1"))                                 
         interp.add_csc_set(cscs)
         wTrie = interp.commands
         for spoken, cscmd_list in wTrie.items():
             
             if spoken == ['hello']:
                 cscmd_list_expected = \
   [{'action': "Inserts 'csc blank^' in current buffer",
  'doc': 'hello in csc set testlist1',
  'equiv': 'BlankLine: any',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc before arguments^' in current buffer",
  'doc': 'hello in csc set testlist1',
  'equiv': 'ContPyBeforeArguments: python',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc hello^' in current buffer",
  'doc': 'hello in csc set testlist1',
  'equiv': 'Any',
  'scope': 'global',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'}]

             else:
                 self.fail("should not come here, testing error, should have exactly 1 spoken form")
             visible_list = cscmd_list.get_info()
             self.assert_equal(cscmd_list_expected, visible_list,
                               'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
             break
         else:
             self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")
 
    def test_Test_correct_order_of_CSCmdList2(self):
         interp = CmdInterp()
         actionHello = ActionInsert("csc inverted")
         actionBlankLine = ActionInsert("csc blank")
         # test the sorting of the csc inverted:
         contAny = ContAny()
         contBlankLine = ContBlankLine()
         cscs = CSCmdSet('csc demo set', description='description of csc demo set')
         cscs.add_csc(CSCmd(spoken_forms=['inverted'],
                                     meanings={contBlankLine: actionBlankLine,
                                               contAny: actionHello},
                                    docstring="hello in csc set testlist2"))                                 
                                 
         interp.add_csc_set(cscs)
         wTrie = interp.commands
         for spoken, cscmd_list in wTrie.items():
             
             if spoken == ['inverted']:
                 cscmd_list_expected =    [\
 {'action': "Inserts 'csc blank^' in current buffer",
  'doc': 'hello in csc set testlist2',
  'equiv': 'BlankLine: any',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc inverted^' in current buffer",
  'doc': 'hello in csc set testlist2',
  'equiv': 'Any',
  'scope': 'global',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'}]
             else:
                 self.fail("should not come here, testing error, should have exactly 1 spoken form")
             visible_list = cscmd_list.get_info()
             self.assert_equal(cscmd_list_expected, visible_list,
                               'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'% repr(spoken))
             break
         else:
             self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")
        # see ContextTest.py
        

    def test_Test_correct_order_of_CSCmdList_permutations_test(self):
        """Add meanings in different orders, placing in CSCmdList should be sorted right away"""
        actionHello = ActionInsert("csc hello")
        actionBlankLine = ActionInsert("csc blank")
        actionBeforeArguments = ActionInsert("csc before arguments")
        contBlankLine = ContBlankLine()
        contAny = ContAny()
        CAList = [(ContPyBeforeArguments(), actionBeforeArguments),
                  (contAny, actionHello), 
                  (contBlankLine, actionBlankLine)]

        for permutation in [(1,2,0), (2,0,1), (0,2,1), (1,0,2), (2,1,0), (0,1,2)]:
             interp = CmdInterp()
             CAListPermuted = [CAList[i] for i in permutation]
             cscs = CSCmdSet('csc demo set', description='description of csc demo set')
             # test the sorting of the csc. order of dict not important, always returning same CSCmdList:
             meanings = dict()
             for (c,a) in CAListPermuted:
                 meanings[c] = a
             csc = CSCmd(spoken_forms=['hello'],
                                     meanings=meanings,
                                     docstring="hello in csc test permutations")
             cscs.add_csc(csc)
             interp.add_csc_set(cscs)
             wTrie = interp.commands
             for spoken, cscmd_list in wTrie.items():
                 
                 if spoken == ['hello']:
                     cscmd_list_expected = \
  [{'action': "Inserts 'csc blank^' in current buffer",
  'doc': 'hello in csc test permutations',
  'equiv': 'BlankLine: any',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc before arguments^' in current buffer",
  'doc': 'hello in csc test permutations',
  'equiv': 'ContPyBeforeArguments: python',
  'scope': 'immediate',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'},
 {'action': "Inserts 'csc hello^' in current buffer",
  'doc': 'hello in csc test permutations',
  'equiv': 'Any',
  'scope': 'global',
  'setdescription': 'description of csc demo set',
  'setname': 'csc demo set'}]

                 else:
                     self.fail("should not come here, testing error, should have exactly 1 spoken form")
                 visible_list = cscmd_list.get_info()
                 self.assert_equal(cscmd_list_expected, visible_list,
                                   'wTrie CSCmdList of meanings with spoken form "%s" (permutation: %s) is not as expected'% \
                                   (repr(spoken), permutation))
                 break
             else:
                 self.fail("no spoken forms in test, should not come here, testing error, should have 1 spoken form")



    def test_Test_conflicing_context_instances(self):
        pass
Ejemplo n.º 26
0
class WhatCanISayTest(VoiceCodeRootTest.VoiceCodeRootTest):
    """tests of WhatCanISay functionality

    testing the actual html output files is a bit fake:
    if the folder WhatCanISayTestResults in VCODE_HOME\Data\Benchmark, or
    subfolders like "python", "C", "perl" (and possibly additional languages) do not exist,
    the test run creates them and uses them for comparison with future testing. So mainly for
    the developers of these functions.

    If you are working on WhatCanISay, it is pretty safe to remove above folders as long as you
    test the results in your webbrowser afterwards.

    The test websites are created in  VCODE_HOME\Data\Tmp\language folders(see vc_config)

the test date have a duplicate entry "else" and "else duplicate", which should conflict at define time
the "equals" csc and lsa should (for python) show up with
    3 entries normal, and with 1 entry for inside or outside arguments list

    """
    def __init__(self, name):
        VoiceCodeRootTest.VoiceCodeRootTest.__init__(self, name)

    def setUp(self):
        print '\n=======setting up WhatCanISay test instance'
        self.wciSay = WhatCanISay.WhatCanISay()
        self.interp = CmdInterp()

        # lsa set:
        commands = CmdSet("mixed commands",
                          description="description of commands")
        commands.add_lsa(
            LSAlias(lsa_multiply_spoken_forms,
                    lsa_multiply_meanings,
                    name="multiply"))
        commands.add_lsa(
            LSAlias(lsa_not_spoken_forms, lsa_not_meanings, name="not"))
        commands.add_lsa(
            LSAlias(lsa_not_duplicate_spoken_forms,
                    lsa_not_meanings,
                    name="not"))
        commands.add_lsa(
            LSAlias(lsa_equals_spoken_forms,
                    lsa_equals_meanings,
                    name="equals lsa"))
        # also add an equals csc to these commands:
        commands.add_csc(
            CSCmd(spoken_forms=csc_equals_spoken_forms,
                  meanings=csc_equals_meanings,
                  docstring=csc_equals_docstring))
        self.interp.add_cmd_set(commands)

        # csc set:
        cscs = CmdSet('csc commands', description='description of CSCS')
        cscs2 = CmdSet('csc commands too',
                       description='description duplicates of CSCS')
        cscs.add_csc(
            CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                  meanings=csc_with_arguments_meanings,
                  docstring=csc_with_arguments_docstring))

        # here the tricky one: else only for python:
        cscs.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_python_else_meanings,
                  docstring=csc_python_else_docstring))
        # else duplicate, only for python:
        cscs.add_csc(
            CSCmd(spoken_forms=csc_else_duplicate_spoken_forms,
                  meanings=csc_python_else_meanings,
                  docstring=csc_python_else_docstring))
        # csc_c_else_meanings only for c, group should be : csc commands too!

        # and in another set: else for c! should come in set cscs commands too!!!
        cscs2.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_c_else_meanings,
                  docstring=csc_c_else_docstring))
        self.interp.add_csc_set(cscs)
        self.interp.add_csc_set(cscs2)

        # punctuation:
        punc = SinglePunctuation(name='standard punctuation')
        punc.add('%', ['percent-sign'])
        punc.create(self.interp)

        self.wciSay.load_commands_from_interpreter(self._app(), self.interp,
                                                   'python')

##########################################################
# Documentation tests
#
# These tests illustrate how to use the class.
##########################################################

    def test_This_is_how_you_create_a_WhatCanISay_instance(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # load one lsa and one csc:
        interp.add_csc(
            CSCmd(["equals"],
                  meanings={contAny: ActionInsert("====")},
                  name="equals csc"))
        interp.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')

    def test_This_is_how_you_create_the_commands_for_showing(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # load one lsa and one csc:
        interp.add_csc(
            CSCmd(["equals"],
                  meanings={contAny: ActionInsert("====")},
                  name="equals csc"))
        interp.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        wciSay.create_cmds()

    def test_This_is_how_to_create_the_pages(self):
        """in order to automatically show the pages
 
        hard to test, except by eye...
        note: possibly disable when doing all tests automatically
        """
        self.wciSay.create_cmds()
        self.wciSay.create_html_pages()

    def test_This_is_how_to_create_and_show_the_pages(self):
        """in order to automatically show the pages
 
        hard to test, except by eye...
        note: possibly disable when doing all tests automatically
        """
        ##        self.wciSay.create_cmds()
        ##        self.wciSay.create_html_pages()
        ##        self.wciSay.show_cmds()
        pass

##########################################################
# Unit tests lsa and general commands
#
# These tests check the internal workings of the class.
##########################################################

    def test_the_index_of_WhatCanISay_default(self):

        # all_lang = None, curr_context = None, curr_lang = 'python' in this test case
        self.assert_equal(
            expected_index, self.wciSay.index,
            "test index of WhatCanISay (default) is not as expected")
        self.wciSay.create_cmds()
        expected_top_menu = {'python': 'python_overview.html'}
        expected_left_menu = {
            'python': {
                'csc commands': 'python_csccommands.html',
                'mixed commands': 'python_mixedcommands.html'
            }
        }
        expected_top_menu_keys = ['python']
        expected_left_menu_keys = {
            'python': ['csc commands', 'mixed commands']
        }
        self.assert_equal(expected_top_menu, self.wciSay.top_menu,
                          "top menu of WhatCanISay (default) not as expected")
        self.assert_equal(
            expected_left_menu, self.wciSay.left_menu,
            "left menu of WhatCanISay (default) not as expected")
        self.assert_equal(
            expected_top_menu_keys, self.wciSay.top_menu_keys,
            "top menu keys of WhatCanISay (default) not as expected")

        self.assert_equal(
            expected_left_menu_keys, self.wciSay.left_menu_keys,
            "left menu keys of WhatCanISay (default) not as expected")

    def test_the_index_of_WhatCanISay_all_lang(self):

        # all_lang = 1, curr_context = None, curr_lang = 'python' in this test case
        self.wciSay.load_commands_from_interpreter(self._app(),
                                                   self.interp,
                                                   'python',
                                                   all_lang=1)
        expected_index_keys_all_lang = list(all_languages)
        actual_keys = self.wciSay.index.keys()
        actual_keys.sort()
        self.assert_equal(
            expected_index_keys_all_lang, actual_keys,
            "test index of WhatCanISay .(all_lang) has not expected keys")
        ##     self.assert_equal(expected_boilerplate, self.wciSay.boilerplate, \
        ##                          "test boilerplate of WhatCanISay (all_lang) is not as expected")
        # move on to the commands:
        self.wciSay.create_cmds()
        # changes with new languages:
        expected_top_menu = {
            'C': 'c_overview.html',
            'java': 'java_overview.html',
            'javascript': 'javascript_overview.html',
            'matlab': 'matlab_overview.html',
            'perl': 'perl_overview.html',
            'php': 'php_overview.html',
            'python': 'python_overview.html'
        }

        # changes with new languages:
        expected_left_menu = \
   {'C': {'csc commands': 'c_csccommands.html',
        'csc commands too': 'c_csccommandstoo.html',
        'mixed commands': 'c_mixedcommands.html',
        'standard punctuation': 'c_standardpunctuation.html',
        'standard punctuation navigation': 'c_standardpunctuationnavigation.html'},
        'java': {'csc commands': 'java_csccommands.html',
          'standard punctuation': 'java_standardpunctuation.html',
          'standard punctuation navigation': 'java_standardpunctuationnavigation.html'},
        'javascript': {'csc commands': 'javascript_csccommands.html',
                'standard punctuation': 'javascript_standardpunctuation.html',
                'standard punctuation navigation': 'javascript_standardpunctuationnavigation.html'},
        'matlab': {'csc commands': 'matlab_csccommands.html',
            'standard punctuation': 'matlab_standardpunctuation.html',
            'standard punctuation navigation': 'matlab_standardpunctuationnavigation.html'},
        'perl': {'csc commands': 'perl_csccommands.html',
          'mixed commands': 'perl_mixedcommands.html',
          'standard punctuation': 'perl_standardpunctuation.html',
          'standard punctuation navigation': 'perl_standardpunctuationnavigation.html'},
        'php': {'csc commands': 'php_csccommands.html',
         'standard punctuation': 'php_standardpunctuation.html',
         'standard punctuation navigation': 'php_standardpunctuationnavigation.html'},
        'python': {'csc commands': 'python_csccommands.html',
            'mixed commands': 'python_mixedcommands.html',
            'standard punctuation': 'python_standardpunctuation.html',
            'standard punctuation navigation': 'python_standardpunctuationnavigation.html'}}

        # changes with mew languages:
        expected_top_menu_keys = [
            'C', 'java', 'javascript', 'matlab', 'perl', 'php', 'python'
        ]
        expected_left_menu_keys =   \
   {'C': ['csc commands',
        'csc commands too',
        'mixed commands',
        'standard punctuation',
        'standard punctuation navigation'],
        'java': ['csc commands',
          'standard punctuation',
          'standard punctuation navigation'],
        'javascript': ['csc commands',
                'standard punctuation',
                'standard punctuation navigation'],
        'matlab': ['csc commands',
            'standard punctuation',
            'standard punctuation navigation'],
        'perl': ['csc commands',
          'mixed commands',
          'standard punctuation',
          'standard punctuation navigation'],
        'php': ['csc commands',
         'standard punctuation',
         'standard punctuation navigation'],
        'python': ['csc commands',
            'mixed commands',
            'standard punctuation',
            'standard punctuation navigation']}

        self.assert_equal(
            expected_top_menu, self.wciSay.top_menu,
            "top menu of WhatCanISay (all_lang) not as expected")
        self.assert_equal(
            expected_left_menu, self.wciSay.left_menu,
            "left menu of WhatCanISay (all_lang) not as expected")
        self.assert_equal(
            expected_top_menu_keys, self.wciSay.top_menu_keys,
            "top menu keys of WhatCanISay (all_lang) not as expected")
        self.assert_equal(
            expected_left_menu_keys, self.wciSay.left_menu_keys,
            "left menu keys of WhatCanISay (all_lang) not as expected")

    def test_the_index_of_WhatCanISay_curr_context(self):

        self._open_empty_test_file('temp.py')
        self.wciSay.load_commands_from_interpreter(self._app(),
                                                   self.interp,
                                                   'python',
                                                   curr_context=1)
        # on to the commands:
        self.wciSay.create_cmds()
        expected_top_menu = {'python': 'python_overview.html'}
        expected_top_menu_keys = ['python']
        expected_left_menu = \
   {'python': {'csc commands': 'python_csccommands.html',
            'mixed commands': 'python_mixedcommands.html'}}

        expected_left_menu_keys = {
            'python': ['csc commands', 'mixed commands']
        }
        self.assert_equal(
            expected_top_menu, self.wciSay.top_menu,
            "top menu of WhatCanISay (curr_context) not as expected")
        self.assert_equal(
            expected_left_menu, self.wciSay.left_menu,
            "left menu of WhatCanISay (curr_context) not as expected")
        self.assert_equal(
            expected_top_menu_keys, self.wciSay.top_menu_keys,
            " menu keys of WhatCanISay (curr_context) not as expected")
        self.assert_equal(
            expected_left_menu_keys, self.wciSay.left_menu_keys,
            "left menu keys of WhatCanISay (curr_context) not as expected")

    def test_the_index_of_simple_csc_and_an_lsa_definition(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do one csc and one lsa:
        interp.add_csc(
            CSCmd(["equals"],
                  meanings={contAny: ActionInsert("====")},
                  name="equals csc"))
        interp.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                    'doc': None,
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'no description',
                    'setname': 'cscs'}]],
        'plus': [{'description': 'no description',
                 'name': 'plus sign',
                 'new_symbol': None,
                 'setname': 'lsas',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of one CSC and one LSA command is not as expected")

    def test_the_index_of_a_cmdset_with_an_lsa_and_a_csc_in_it(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # the new CmdSet can contain both CSCs and LSAs...
        # do one csc and one lsa:
        cmds = CmdSet("commands set", description="generic commands set")
        cmds.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))
        # without docstring:
        cmds.add_csc(
            CSCmd(["equals"], meanings={contAny: ActionInsert("====")}))
        # with docstring:
        cmds.add_csc(
            CSCmd(["not equal"],
                  meanings={contAny: ActionInsert(" != ")},
                  docstring="csc not equal"))

        interp.add_cmd_set(cmds)
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                    'doc': None,
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'generic commands set',
                    'setname': 'commands set'}]],
        'not equal': [[{'action': "Inserts ' != ^' in current buffer",
                       'doc': 'csc not equal',
                       'equiv': 'Any',
                       'scope': 'global',
                       'setdescription': 'generic commands set',
                       'setname': 'commands set'}]],
        'plus': [{'name': 'plus sign',
                 'new_symbol': None,
                 'setdescription': 'generic commands set',
                 'setname': 'commands set',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of one CSC and one LSA command is not as expected")

    def test_the_index_of_c_else_with_different_csc_set_name_as_python_else(
            self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do a csc set for python and a csc set for c
        # note: for try all went well in C, except for the setname
        cscs1 = CSCmdSet('try command python',
                         description='description of CSCS')
        cscs2 = CSCmdSet('try command C',
                         description='description duplicates of CSCS')
        cscs2.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_c_else_meanings,
                  docstring=csc_c_else_docstring))
        cscs1.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_python_else_meanings,
                  docstring=csc_python_else_docstring))
        interp.add_csc_set(cscs2)
        interp.add_csc_set(cscs1)
        interp.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))

        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'else': [[{'action': 'else clause of a C conditional',
                  'doc': 'else clause only c',
                  'equiv': 'Language: C',
                  'scope': 'buffer',
                  'setdescription': 'description duplicates of CSCS',
                  'setname': 'try command C'}]],
        'plus': [{'description': 'no description',
                 'name': 'plus sign',
                 'new_symbol': None,
                 'setname': 'lsas',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of else csc set in C different from expected")

        wciSay.load_commands_from_interpreter(self._app(), interp, 'python')
        expected = \
   {'python': {'else': [[{'action': 'no docstring available',
                       'doc': 'else clause only python',
                       'equiv': 'BlankLine: python',
                       'scope': 'immediate',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'},
                      {'action': "Inserts 'else on non blank line^' in current buffer",
                       'doc': 'else clause only python',
                       'equiv': 'Language: python',
                       'scope': 'buffer',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'}]],
            'plus': [{'description': 'no description',
                      'name': 'plus sign',
                      'new_symbol': None,
                      'setname': 'lsas',
                      'spacing': 0,
                      'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of else csc set in python different from expected")

    def test_control_standard_files(self):
        """Controls the existence of some standard files"""
        folder = self.wciSay.html_folder
        self.assert_(os.path.isdir(folder),
                     'WhatCanISay does not have a valid folder %s' % folder)
        for f in required_non_html_files:
            F = os.path.join(folder, f)
            self.assert_(
                os.path.isfile(F),
                'file "%s" is missing (and is required for the WhatCanISay website (%s)).'
                % (f, F))

    def test_resulting_websites(self):
        """check if all the files are equal"""
        for lang in expected_languages:
            print '\ntesting default wcisay website for language: %s' % lang
            self.do_test_resulting_website(lang,
                                           all_lang=None,
                                           curr_context=None,
                                           comment=None)

            if lang in ('C', 'python'):

                ext = dict(C='c', python='py')[lang]
                self._open_empty_test_file('temp.%s' % ext)
                print '\ntesting the current context website "blank" for language: %s' % lang
                self.do_test_resulting_website(lang,
                                               all_lang=None,
                                               curr_context=1,
                                               comment="blank")
                self._insert_in_active_buffer(
                    "now line is (inside arguments list")
                print '\ntesting the current context website "filled" for language: %s' % lang
                self.do_test_resulting_website(lang,
                                               curr_context=1,
                                               comment="filled")

    ## removed, produces errors each time a language is added...
    ## all languages produce (should) same result with all_lang flag on:
    #self.do_test_resulting_website('C', all_lang=1)

    def do_test_resulting_website(self,
                                  lang,
                                  all_lang=None,
                                  curr_context=None,
                                  comment=None):
        """make the website for these paramters and check against previous result.

         if curr_context = 1, a context should have been setup first, and comment gives a clue
         to the correct folder to check against.

         only test html files         

         if no html files present in folder, copy result into the folder and assume the result is correct

         if language has changed/added, recopy from  (...)\\Data\whatCanISay to
                  (...)\Data\Benchmark\WhatCanISayTestResults, and to subdir all_lang or other...
         to: 

        """
        html_folder = self.wciSay.html_folder

        html_files = glob.glob(os.path.join(html_folder, "*.html"))
        for f in html_files:
            os.remove(f)

        self.wciSay.load_commands_from_interpreter(self._app(),
                                                   self.interp,
                                                   lang,
                                                   all_lang=all_lang,
                                                   curr_context=curr_context)
        self.wciSay.create_cmds()
        self.wciSay.create_html_pages()

        test_home = vc_globals.wcisay_test_folder
        self.assert_(os.path.isdir(test_home),
                     "No valid folder for testing the resulting websites")
        if all_lang:
            test_folder = os.path.join(test_home, "all_lang")
        elif curr_context:
            test_folder = os.path.join(test_home,
                                       lang + "_curr_context_" + comment or "")
        else:
            test_folder = os.path.join(test_home, lang)

        if os.path.isdir(test_folder):
            ##            print 'using test folder: %s'% test_folder
            old_files = glob.glob(os.path.join(test_folder, "*.html"))
            if not old_files:
                print 'empty folder for language %s assume correct results, copy to %s'% \
                      (lang, util.within_VCode(test_folder))
                self.copy_html_files(html_folder, test_folder)
                return
        else:
            print 'no test folder yet for language %s, assume correct results, copy to %s'% \
                  (lang, test_folder)
            self.copy_html_files(html_folder, test_folder)
            return

        self.assert_equal_html_files(
            test_folder, html_folder,
            'WhatCanISay website of language %s (with all_lang: %s, curr_context: %s, comment: %s'
            % (lang, all_lang, curr_context, comment))

    def test_context_applies_for_lang(self):
        self.assert_(
            self.wciSay.context_applies_for_lang('python', contPython),
            "ContPy should applie for langage python")
        self.failIf(self.wciSay.context_applies_for_lang('C', contPython),
                    "ContPy should not apply for langage C")

        self.assert_(self.wciSay.context_applies_for_lang('C', contC),
                     "ContC should apply for langage C")
        self.failIf(self.wciSay.context_applies_for_lang('python', contC),
                    "ContC should not apply for langage python")

        self.assert_(self.wciSay.context_applies_for_lang('python', ContAny()),
                     "ContAny should apply for langage python")
        self.assert_(self.wciSay.context_applies_for_lang('C', ContAny()),
                     "ContAny should apply for langage C")

###############################################################
# Assertions and utility function testing:
#
###############################################################

    def assert_equal_html_files(self, expected_folder, actual_folder, mess):
        """test the equality of the html files"""
        expected_list = glob.glob(os.path.join(expected_folder, '*.html'))
        actual_list = glob.glob(os.path.join(actual_folder, '*.html'))
        expected_list.sort()
        actual_list.sort()
        self.assert_equal(len(expected_list), len(actual_list), mess + '\n' + \
                       "number of expected html files not equal to actual\nExpected: %s\nActual: %s"%
                         (expected_list, actual_list))
        for e, a in zip(expected_list, actual_list):
            file_e = os.path.basename(e)
            file_a = os.path.basename(a)

            self.assert_equal(
                file_e, file_a,
                "filenames are not equal:\n%s and\n%s" % (file_e, file_a))

            self.assert_equal_files(
                e, a, "files are not equal:\n%s and\n%s" % (e, a))

    def copy_html_files(self, src_dir, dest_dir):
        """copy only html files from src to dest"""
        if os.path.isdir(dest_dir):
            for f in os.listdir(dest_dir):
                if f.endswith("html"):
                    os.remove(os.path.join)(dest_dir, f)
        else:
            os.makedirs(dest_dir)
            self.assert_(os.path.isdir(dest_dir),
                         'could not make empty folder %s' % dest_dir)

        html_files = glob.glob(src_dir + os.sep + '*.html')
        for src in html_files:
            dest = src.replace(src_dir, dest_dir)
            shutil.copyfile(src, dest)

    def test_WhatCanISay_with_all_lang_and_curr_context_should_fail(self):
        self.assertRaises(ValueError,
                          self.wciSay.load_commands_from_interpreter,
                          self._app(), self.interp, 'python', 1, 1)
Ejemplo n.º 27
0
class WhatCanISayTest(VoiceCodeRootTest.VoiceCodeRootTest):
    """tests of WhatCanISay functionality

    testing the actual html output files is a bit fake:
    if the folder WhatCanISayTestResults in VCODE_HOME\Data\Benchmark, or
    subfolders like "python", "C", "perl" (and possibly additional languages) do not exist,
    the test run creates them and uses them for comparison with future testing. So mainly for
    the developers of these functions.

    If you are working on WhatCanISay, it is pretty safe to remove above folders as long as you
    test the results in your webbrowser afterwards.

    The test websites are created in  VCODE_HOME\Data\Tmp\language folders(see vc_config)

the test date have a duplicate entry "else" and "else duplicate", which should conflict at define time
the "equals" csc and lsa should (for python) show up with
    3 entries normal, and with 1 entry for inside or outside arguments list

    """
   
    def __init__(self, name):
      VoiceCodeRootTest.VoiceCodeRootTest.__init__(self, name)
      
    def setUp(self):
        print '\n=======setting up WhatCanISay test instance'
        self.wciSay = WhatCanISay.WhatCanISay()
        self.interp = CmdInterp()

        # lsa set:
        lsas = LSAliasSet("lsa/ commands", description="description of LSAS")
        lsas.add_lsa(LSAlias(lsa_multiply_spoken_forms, lsa_multiply_meanings, name="multiply"))
        lsas.add_lsa(LSAlias(lsa_not_spoken_forms, lsa_not_meanings, name="not"))
        lsas.add_lsa(LSAlias(lsa_not_duplicate_spoken_forms, lsa_not_meanings, name="not"))
        lsas.add_lsa(LSAlias(lsa_equals_spoken_forms, lsa_equals_meanings, name="equals lsa"))
        self.interp.add_lsa_set(lsas)

        # csc set:
        cscs = CSCmdSet('csc commands', description='description of CSCS')
        cscs2 = CSCmdSet('csc commands too', description='description duplicates of CSCS')
        cscs.add_csc(CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                           meanings=csc_with_arguments_meanings,
                           docstring=csc_with_arguments_docstring))

        # here the tricky one: else only for python:        
        cscs.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_python_else_meanings,
                           docstring=csc_python_else_docstring))
        # else duplicate, only for python:
        cscs.add_csc(CSCmd(spoken_forms=csc_else_duplicate_spoken_forms,
                           meanings=csc_python_else_meanings,
                           docstring=csc_python_else_docstring))
        # csc_c_else_meanings only for c, group should be : csc commands too!

        # and inanother set: else for c! should come in set cscs commands too!!!        
        cscs2.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_c_else_meanings,
                           docstring=csc_c_else_docstring))
        cscs.add_csc(CSCmd(spoken_forms=csc_equals_spoken_forms,
                           meanings=csc_equals_meanings,
                           docstring=csc_equals_docstring))
        self.interp.add_csc_set(cscs)
        self.interp.add_csc_set(cscs2)
        

        # punctuation:
        punc = SinglePunctuation(name = 'standard punctuation')
        punc.add('%', ['percent-sign'])
        punc.create(self.interp)
        
        self.wciSay.load_commands_from_interpreter(self._app(), self.interp, 'python')

      
##########################################################
# Documentation tests
#
# These tests illustrate how to use the class.
##########################################################
      

    def test_This_is_how_you_create_a_WhatCanISay_instance(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # load one lsa and one csc:
        interp.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}, name="equals csc"))
        interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        

    def test_This_is_how_you_create_the_commands_for_showing(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # load one lsa and one csc:
        interp.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}, name="equals csc"))
        interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        wciSay.create_cmds()

    def test_This_is_how_to_create_the_pages(self):
        """in order to automatically show the pages
 
        hard to test, except by eye...
        note: possibly disable when doing all tests automatically
        """
        self.wciSay.create_cmds()
        self.wciSay.create_html_pages()

    def test_This_is_how_to_create_and_show_the_pages(self):
        """in order to automatically show the pages
 
        hard to test, except by eye...
        note: possibly disable when doing all tests automatically
        """
##        self.wciSay.create_cmds()
##        self.wciSay.create_html_pages()
##        self.wciSay.show_cmds()
        pass
        
        
##########################################################
# Unit tests lsa and general commands
#
# These tests check the internal workings of the class.
##########################################################

    def test_the_index_of_WhatCanISay_default(self):

        # all_lang = None, curr_context = None, curr_lang = 'python' in this test case
        self.assert_equal(expected_index, self.wciSay.index, "test index of WhatCanISay (default) is not as expected")
        self.wciSay.create_cmds()
        expected_top_menu =   {'python': 'python_overview.html'}
        expected_left_menu =        {'python': {'csc commands': 'python_csccommands.html',
                                               'lsa/ commands': 'python_lsacommands.html'}}
        expected_top_menu_keys = ['python']
        expected_left_menu_keys = {'python': ['csc commands', 'lsa/ commands']}
        self.assert_equal(expected_top_menu, self.wciSay.top_menu, "top menu of WhatCanISay (default) not as expected")
        self.assert_equal(expected_left_menu, self.wciSay.left_menu, "left menu of WhatCanISay (default) not as expected")
        self.assert_equal(expected_top_menu_keys, self.wciSay.top_menu_keys, "top menu keys of WhatCanISay (default) not as expected")

        self.assert_equal(expected_left_menu_keys, self.wciSay.left_menu_keys,
                         "left menu keys of WhatCanISay (default) not as expected")

    def test_the_index_of_WhatCanISay_all_lang(self):

        # all_lang = 1, curr_context = None, curr_lang = 'python' in this test case
        self.wciSay.load_commands_from_interpreter(self._app(), self.interp, 'python', all_lang=1)
        expected_index_keys_all_lang = list(all_languages)
        actual_keys = self.wciSay.index.keys()
        actual_keys.sort()
        self.assert_equal(expected_index_keys_all_lang, actual_keys, "test index of WhatCanISay .(all_lang) has not expected keys")
##     self.assert_equal(expected_boilerplate, self.wciSay.boilerplate, \
##                          "test boilerplate of WhatCanISay (all_lang) is not as expected")
        # move on to the commands:
        self.wciSay.create_cmds()
        # changes with new languages:
        expected_top_menu =       {'C': 'c_overview.html',
 'java': 'java_overview.html',
 'javascript': 'javascript_overview.html',
 'perl': 'perl_overview.html',
 'php': 'php_overview.html',
 'python': 'python_overview.html'}
        
        # changes with new languages:
        expected_left_menu = \
   {'C': {'csc commands': 'c_csccommands.html',
       'csc commands too': 'c_csccommandstoo.html',
       'lsa/ commands': 'c_lsacommands.html',
       'standard punctuation': 'c_standardpunctuation.html',
       'standard punctuation navigation': 'c_standardpunctuationnavigation.html'},
 'java': {'csc commands': 'java_csccommands.html',
          'standard punctuation': 'java_standardpunctuation.html',
          'standard punctuation navigation': 'java_standardpunctuationnavigation.html'},
 'javascript': {'csc commands': 'javascript_csccommands.html',
                'standard punctuation': 'javascript_standardpunctuation.html',
                'standard punctuation navigation': 'javascript_standardpunctuationnavigation.html'},
 'perl': {'csc commands': 'perl_csccommands.html',
          'lsa/ commands': 'perl_lsacommands.html',
          'standard punctuation': 'perl_standardpunctuation.html',
          'standard punctuation navigation': 'perl_standardpunctuationnavigation.html'},
 'php': {'csc commands': 'php_csccommands.html',
         'standard punctuation': 'php_standardpunctuation.html',
         'standard punctuation navigation': 'php_standardpunctuationnavigation.html'},
 'python': {'csc commands': 'python_csccommands.html',
            'lsa/ commands': 'python_lsacommands.html',
            'standard punctuation': 'python_standardpunctuation.html',
            'standard punctuation navigation': 'python_standardpunctuationnavigation.html'}}

        # changes with mew languages:
        expected_top_menu_keys = ['C', 'java', 'javascript', 'perl', 'php', 'python']
        expected_left_menu_keys =   \
            {'C': ['csc commands', 'csc commands too', 'lsa/ commands',
                   'standard punctuation', 'standard punctuation navigation'],
             'java': ['csc commands', 'standard punctuation', 'standard punctuation navigation'],
             'python': ['csc commands', 'lsa/ commands', 'standard punctuation',
                        'standard punctuation navigation'],
             'javascript': ['csc commands', 'standard punctuation', 'standard punctuation navigation'],
             'perl': ['csc commands', 'lsa/ commands', 'standard punctuation',
                      'standard punctuation navigation'],
             'php': ['csc commands', 'standard punctuation', 'standard punctuation navigation']}
        
        self.assert_equal(expected_top_menu, self.wciSay.top_menu, "top menu of WhatCanISay (all_lang) not as expected")
        self.assert_equal(expected_left_menu, self.wciSay.left_menu, "left menu of WhatCanISay (all_lang) not as expected")
        self.assert_equal(expected_top_menu_keys, self.wciSay.top_menu_keys, "top menu keys of WhatCanISay (all_lang) not as expected")
        self.assert_equal(expected_left_menu_keys, self.wciSay.left_menu_keys,
                         "left menu keys of WhatCanISay (all_lang) not as expected")


    def test_the_index_of_WhatCanISay_curr_context(self):

        self._open_empty_test_file('temp.py')
        self.wciSay.load_commands_from_interpreter(self._app(), self.interp, 'python', curr_context=1)
        # on to the commands:
        self.wciSay.create_cmds()
        expected_top_menu =   {'python': 'python_overview.html'}
        expected_top_menu_keys = ['python']
        expected_left_menu =        {'python': {'csc commands': 'python_csccommands.html',
            'lsa/ commands': 'python_lsacommands.html'}}
        expected_left_menu_keys =   {'python': ['csc commands', 'lsa/ commands']}
        self.assert_equal(expected_top_menu, self.wciSay.top_menu, "top menu of WhatCanISay (curr_context) not as expected")
        self.assert_equal(expected_left_menu, self.wciSay.left_menu, "left menu of WhatCanISay (curr_context) not as expected")
        self.assert_equal(expected_top_menu_keys, self.wciSay.top_menu_keys, " menu keys of WhatCanISay (curr_context) not as expected")
        self.assert_equal(expected_left_menu_keys, self.wciSay.left_menu_keys, "left menu keys of WhatCanISay (curr_context) not as expected")
        

    def test_the_index_of_simple_csc_and_an_lsa_definition(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do one csc and one lsa:
        interp.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}, name="equals csc"))
        interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                    'doc': None,
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'no description',
                    'setname': 'cscs'}]],
       'plus': [{'description': 'no description',
                 'name': 'plus sign',
                 'new_symbol': None,
                 'setname': 'lsas',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(expected, wciSay.index, "index of one CSC and one LSA command is not as expected")

    def test_the_index_of_a_cmdset_with_an_lsa_and_a_csc_in_it(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do one csc and one lsa:
        cmds = CmdSet("commands set")
        cmds.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))
        cmds.add_csc(CSCmd(["equals"], meanings={contAny: ActionInsert("====")}, name="equals csc"))
        
        interp.add_cmd_set(cmds)
        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
    {'C': {'equals': [[{'action': "Inserts '====^' in current buffer",
                    'doc': None,
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': None,
                    'setname': 'commands set'}]],
       'plus': [{'name': 'plus sign',
                 'new_symbol': None,
                 'setdescription': 'no description',
                 'setname': 'commands set',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(expected, wciSay.index, "index of one CSC and one LSA command is not as expected")


    def test_the_index_of_c_else_with_different_csc_set_name_as_python_else(self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do a csc set for python and a csc set for c
        # note: for try all went well in C, except for the setname
        cscs1 = CSCmdSet('try command python', description='description of CSCS')
        cscs2 = CSCmdSet('try command C', description='description duplicates of CSCS')
        cscs2.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_c_else_meanings,
                           docstring=csc_c_else_docstring))
        cscs1.add_csc(CSCmd(spoken_forms=csc_else_spoken_forms,
                           meanings=csc_python_else_meanings,
                           docstring=csc_python_else_docstring))
        interp.add_csc_set(cscs2)
        interp.add_csc_set(cscs1)
        interp.add_lsa(LSAlias(["plus"], meanings={all_languages: " + "}, name="plus sign"))

        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'else': [[{'action': 'else clause of a C conditional',
                  'doc': 'else clause only c',
                  'equiv': 'Language: C',
                  'scope': 'buffer',
                  'setdescription': 'description duplicates of CSCS',
                  'setname': 'try command C'}]],
       'plus': [{'description': 'no description',
                 'name': 'plus sign',
                 'new_symbol': None,
                 'setname': 'lsas',
                 'spacing': 0,
                 'written_form': ' + '}]}}                 
        self.assert_equal(expected, wciSay.index, "index of else csc set in C different from expected")

        wciSay.load_commands_from_interpreter(self._app(), interp, 'python')
        expected = \
   {'python': {'else': [[{'action': 'no docstring available',
                       'doc': 'else clause only python',
                       'equiv': 'BlankLine: python',
                       'scope': 'immediate',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'},
                      {'action': "Inserts 'else on non blank line^' in current buffer",
                       'doc': 'else clause only python',
                       'equiv': 'Language: python',
                       'scope': 'buffer',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'}]],
            'plus': [{'description': 'no description',
                      'name': 'plus sign',
                      'new_symbol': None,
                      'setname': 'lsas',
                      'spacing': 0,
                      'written_form': ' + '}]}}
        self.assert_equal(expected, wciSay.index, "index of else csc set in python different from expected")


 
    def test_control_standard_files(self):
        """Controls the existence of some standard files"""
        folder= self.wciSay.html_folder
        self.assert_(os.path.isdir(folder),
            'WhatCanISay does not have a valid folder %s'%folder)
        for f in required_non_html_files:
           F = os.path.join(folder, f)
           self.assert_(os.path.isfile(F),
                'file "%s" is missing (and is required for the WhatCanISay website (%s)).'% (f, F))

        
    def test_resulting_websites(self):
        """check if all the files are equal"""
        for lang in expected_languages:
            print '\ntesting default wcisay website for language: %s'% lang
            self.do_test_resulting_website(lang, all_lang=None, curr_context=None, comment=None)
  
            if lang in ('C', 'python'):
                
                ext = dict(C='c', python='py')[lang]
                self._open_empty_test_file('temp.%s'% ext)
                print '\ntesting the current context website "blank" for language: %s'% lang
                self.do_test_resulting_website(lang, all_lang=None, curr_context=1, comment="blank")
                self._insert_in_active_buffer("now line is (inside arguments list")
                print '\ntesting the current context website "filled" for language: %s'% lang
                self.do_test_resulting_website(lang, curr_context=1, comment="filled")

        # all languages produce (should) same result with all_lang flag on:
        self.do_test_resulting_website('C', all_lang=1)
                
                


    def do_test_resulting_website(self, lang, all_lang=None, curr_context=None, comment=None):
        """make the website for these paramters and check against previous result.

         if curr_context = 1, a context should have been setup first, and comment gives a clue
         to the correct folder to check against.

         only test html files         

         if no html files present in folder, copy result into the folder and assume the result is correct

        """         
        html_folder= self.wciSay.html_folder

        html_files = glob.glob(os.path.join(html_folder, "*.html"))
        for f in html_files:
            os.remove(f)
        
        self.wciSay.load_commands_from_interpreter(self._app(), self.interp, lang,
                                                    all_lang=all_lang, curr_context=curr_context)
        self.wciSay.create_cmds()
        self.wciSay.create_html_pages()

        test_home = vc_globals.wcisay_test_folder
        self.assert_(os.path.isdir(test_home), "No valid folder for testing the resulting websites")
        if all_lang:
            test_folder = os.path.join(test_home, "all_lang")
        elif curr_context:
            test_folder = os.path.join(test_home, lang + "_curr_context_" + comment or "")
        else:
            test_folder = os.path.join(test_home, lang)
           
        if os.path.isdir(test_folder):
##            print 'using test folder: %s'% test_folder
            old_files = glob.glob(os.path.join(test_folder , "*.html"))
            if not old_files:
                print 'empty folder for language %s assume correct results, copy to %s'% \
                      (lang, util.within_VCode(test_folder))
                self.copy_html_files(html_folder, test_folder)
                return
        else:
            print 'no test folder yet for language %s, assume correct results, copy to %s'% \
                  (lang, test_folder)
            self.copy_html_files(html_folder, test_folder)
            return
        
        self.assert_equal_html_files(test_folder, html_folder,
                                      'WhatCanISay website of language %s (with all_lang: %s, curr_context: %s, comment: %s'%
                                      (lang, all_lang, curr_context, comment))

    def test_context_applies_for_lang(self):
        self.assert_(self.wciSay.context_applies_for_lang('python', contPython), 
                      "ContPy should applie for langage python")
        self.failIf(self.wciSay.context_applies_for_lang('C', contPython), 
                      "ContPy should not apply for langage C")

        self.assert_(self.wciSay.context_applies_for_lang('C', contC), 
                      "ContC should apply for langage C")                      
        self.failIf(self.wciSay.context_applies_for_lang('python', contC), 
                      "ContC should not apply for langage python")
                      
        self.assert_(self.wciSay.context_applies_for_lang('python', ContAny()), 
                      "ContAny should apply for langage python")
        self.assert_(self.wciSay.context_applies_for_lang('C', ContAny()), 
                      "ContAny should apply for langage C")         
        

###############################################################
# Assertions and utility function testing:
#
###############################################################
    def assert_equal_html_files(self, expected_folder, actual_folder, mess):
        """test the equality of the html files"""
        expected_list = glob.glob(os.path.join(expected_folder, '*.html'))
        actual_list = glob.glob(os.path.join(actual_folder, '*.html'))
        expected_list.sort()
        actual_list.sort()
        self.assert_equal(len(expected_list), len(actual_list), mess + '\n' + \
                       "number of expected html files not equal to actual\nExpected: %s\nActual: %s"%
                         (expected_list, actual_list))
        for e, a in zip(expected_list, actual_list):
           file_e = os.path.basename(e)
           file_a = os.path.basename(a)
           
           self.assert_equal(file_e, file_a, "filenames are not equal:\n%s and\n%s"%
                                (file_e, file_a))
           
           self.assert_equal_files(e, a, "files are not equal:\n%s and\n%s"%
                                (e, a))

  
    def assert_equal_files(self, expected_file, actual_file, mess):
        for i, k, l in itertools.izip(itertools.count(1),
                                      open(expected_file),
                                      open(actual_file)):
         
           if k.find('class="copyright"') >= 0 and \
               l.find('class="copyright"') >= 0:
                continue  # dates can differ, is expected and accepted
           self.assert_equal(k,l,mess + '\nthe two files------------\n%s\nand\n %s should have been equal\nThey differ in line %s'%
                               (expected_file, actual_file, i))


    def copy_html_files(self, src_dir, dest_dir):
        """copy only html files from src to dest"""
        if os.path.isdir(dest_dir):
           shutil.rmtree(dest_dir)
        os.makedirs(dest_dir)
        self.assert_(os.path.isdir(dest_dir), 'could not make empty folder %s'% dest_dir)

        html_files = glob.glob(src_dir + os.sep + '*.html')
        for src in html_files:
           dest = src.replace(src_dir, dest_dir)
           shutil.copyfile(src, dest)
           
    def test_WhatCanISay_with_all_lang_and_curr_context_should_fail(self):
        self.assertRaises(ValueError, self.wciSay.load_commands_from_interpreter,
                         self._app(), self.interp, 'python', 1, 1)
Ejemplo n.º 28
0
class LSAliasTest(VoiceCodeRootTest.VoiceCodeRootTest):
    """tests of CSCmd and CSCmdDict

    """
    def __init__(self, name):
        VoiceCodeRootTest.VoiceCodeRootTest.__init__(self, name)
        
    def setUp(self):
        self.interp = CmdInterp()
 
        self.interp = CmdInterp()
        self.interp.add_lsa(LSAlias(lsa_multiply_spoken_forms, lsa_multiply_meanings))
        self.interp.add_lsa(LSAlias(lsa_not_spoken_forms, lsa_not_meanings))
    


        
##########################################################
# Documentation tests
#
# These tests illustrate how to use the class.
##########################################################
        

    def test_This_is_how_you_create_a_LSAlias__instance(self):

        interp = CmdInterp()        

        interp.add_lsa(LSAlias(['spoken', 'form'],
                                    {'C':  'sss', 'python': 'ppp'}))
                                                         
        all_lsas = interp.language_specific_aliases
        languages = all_lsas.keys()
        languages.sort()
        expected = list(all_languages)  # list (of keys)
        self.assert_equal(expected, languages, "LSAs, all languages should have a key, this was not as expected")
        expected = all_languages  # tuple
        self.assert_equal(expected, interp.supported_languages(),
                          "LSAs, languages not as expected through interp method")
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ppp'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break

    def test_This_is_how_you_can_make_a_special_case_for_one_language(self):

        interp = CmdInterp()        
##        In next test all languages are first set to "ccc",
##        and then for python is changed to 'qqq'.
        interp.add_lsa(LSAlias(['spoken', 'form'],
                                    {'python': 'qqq', all_languages:  'ccc'}))
                                                         
        all_lsas = interp.language_specific_aliases
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'qqq'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
        c_lsas = all_lsas['C']
        # extract and check only one item:
        for an_LSA in c_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ccc'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break

    def test_This_is_how_you_can_make_a_special_case_c_style_languages(self):

        interp = CmdInterp()        
##        In next test all languages are first set to "aaa",
##        next c_style_languages to ccc, and
##        after that java and python to something more specific
##        and then for python is changed to 'qqq'.
        interp.add_lsa(LSAlias(['spoken', 'form'], 
                                    {'java': 'jjj','python': 'pppp', all_languages:  'aaa',
                                     c_style_languages: 'ccc'}))
                                                         
        all_lsas = interp.language_specific_aliases
        python_lsas = all_lsas['python']
        # extract and check only one item:
        for an_LSA in python_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'pppp'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
        c_lsas = all_lsas['C']
        # extract and check only one item:
        for an_LSA in c_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'ccc'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
    
        java_lsas = all_lsas['java']
        # extract and check only one item:
        for an_LSA in java_lsas.items():
            wordList, entry = an_LSA
            spoken_form_text = ' '.join(wordList)
            written_form_text = getattr(entry, 'written_form', '')
            expected_spoken_form = 'spoken'
            expected_written_form = 'jjj'
            self.assert_equal(expected_spoken_form, spoken_form_text,
                               "LSA spoken form is not as expected")
            self.assert_equal(expected_written_form, written_form_text,
                               "LSA written form is not as expected")
            break
    

            
            
##########################################################
# Unit tests lsa and general commands
#
# These tests check the internal workings of the class.
##########################################################

    def test_Test_contents_of_test_LSAliases(self):
        aliases_visible = {}
        for lang in self.interp.language_specific_aliases:
            aliases_visible[lang] = []
            for wordList, entry in self.interp.language_specific_aliases[lang].items():
                spoken_form_text = ' '.join(wordList)
                written_form_text = getattr(entry, 'written_form', '')
                aliases_visible[lang].append( (spoken_form_text, written_form_text) )
        self.assert_equal(expected_lsa_index, aliases_visible,
                          "testcase language_specific_aliases (made visible) not as expected")


    def test_Test_erroneous_definitions(self):
        
        interp = CmdInterp()
        # unknown language 'D'
        self.assertRaises(ValueError, LSAlias, (['wrong'],), {'D':  'oops'})
        self.assertRaises(DeprecationError, LSAlias, (['deprecated'],), {None:  'oops'})
Ejemplo n.º 29
0
    def setUp(self):
        self.interp = CmdInterp()
 
        self.interp = CmdInterp()
        self.interp.add_lsa(LSAlias(lsa_multiply_spoken_forms, lsa_multiply_meanings))
        self.interp.add_lsa(LSAlias(lsa_not_spoken_forms, lsa_not_meanings))
Ejemplo n.º 30
0
    def setUp(self):
        print '\n=======setting up WhatCanISay test instance'
        self.wciSay = WhatCanISay.WhatCanISay()
        self.interp = CmdInterp()

        # lsa set:
        commands = CmdSet("mixed commands",
                          description="description of commands")
        commands.add_lsa(
            LSAlias(lsa_multiply_spoken_forms,
                    lsa_multiply_meanings,
                    name="multiply"))
        commands.add_lsa(
            LSAlias(lsa_not_spoken_forms, lsa_not_meanings, name="not"))
        commands.add_lsa(
            LSAlias(lsa_not_duplicate_spoken_forms,
                    lsa_not_meanings,
                    name="not"))
        commands.add_lsa(
            LSAlias(lsa_equals_spoken_forms,
                    lsa_equals_meanings,
                    name="equals lsa"))
        # also add an equals csc to these commands:
        commands.add_csc(
            CSCmd(spoken_forms=csc_equals_spoken_forms,
                  meanings=csc_equals_meanings,
                  docstring=csc_equals_docstring))
        self.interp.add_cmd_set(commands)

        # csc set:
        cscs = CmdSet('csc commands', description='description of CSCS')
        cscs2 = CmdSet('csc commands too',
                       description='description duplicates of CSCS')
        cscs.add_csc(
            CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                  meanings=csc_with_arguments_meanings,
                  docstring=csc_with_arguments_docstring))

        # here the tricky one: else only for python:
        cscs.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_python_else_meanings,
                  docstring=csc_python_else_docstring))
        # else duplicate, only for python:
        cscs.add_csc(
            CSCmd(spoken_forms=csc_else_duplicate_spoken_forms,
                  meanings=csc_python_else_meanings,
                  docstring=csc_python_else_docstring))
        # csc_c_else_meanings only for c, group should be : csc commands too!

        # and in another set: else for c! should come in set cscs commands too!!!
        cscs2.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_c_else_meanings,
                  docstring=csc_c_else_docstring))
        self.interp.add_csc_set(cscs)
        self.interp.add_csc_set(cscs2)

        # punctuation:
        punc = SinglePunctuation(name='standard punctuation')
        punc.add('%', ['percent-sign'])
        punc.create(self.interp)

        self.wciSay.load_commands_from_interpreter(self._app(), self.interp,
                                                   'python')
Ejemplo n.º 31
0
    def test_Test_correct_order_of_CSCmdList_permutations_test(self):
        """Add meanings in different orders, placing in CSCmdList should be sorted right away"""
        actionHello = ActionInsert("csc hello")
        actionBlankLine = ActionInsert("csc blank")
        actionBeforeArguments = ActionInsert("csc before arguments")
        contBlankLine = ContBlankLine()
        contAny = ContAny()
        CAList = [(ContPyBeforeArguments(), actionBeforeArguments),
                  (contAny, actionHello), (contBlankLine, actionBlankLine)]

        for permutation in [(1, 2, 0), (2, 0, 1), (0, 2, 1), (1, 0, 2),
                            (2, 1, 0), (0, 1, 2)]:
            interp = CmdInterp()
            CAListPermuted = [CAList[i] for i in permutation]
            cscs = CSCmdSet('csc demo set',
                            description='description of csc demo set')
            # test the sorting of the csc. order of dict not important, always returning same CSCmdList:
            meanings = dict()
            for (c, a) in CAListPermuted:
                meanings[c] = a
            csc = CSCmd(spoken_forms=['hello'],
                        meanings=meanings,
                        docstring="hello in csc test permutations")
            cscs.add_csc(csc)
            interp.add_csc_set(cscs)
            wTrie = interp.commands
            for spoken, cscmd_list in wTrie.items():

                if spoken == ['hello']:
                    cscmd_list_expected = \
 [{'action': "Inserts 'csc blank^' in current buffer",
                    'doc': 'hello in csc test permutations',
                    'equiv': 'BlankLine: any',
                    'scope': 'immediate',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'},
                    {'action': "Inserts 'csc before arguments^' in current buffer",
                    'doc': 'hello in csc test permutations',
                    'equiv': 'ContPyBeforeArguments: python',
                    'scope': 'immediate',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'},
                    {'action': "Inserts 'csc hello^' in current buffer",
                    'doc': 'hello in csc test permutations',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'}]

                else:
                    self.fail(
                        "should not come here, testing error, should have exactly 1 spoken form"
                    )
                visible_list = cscmd_list.get_info()
                self.assert_equal(cscmd_list_expected, visible_list,
                                  'wTrie CSCmdList of meanings with spoken form "%s" (permutation: %s) is not as expected'% \
                                  (repr(spoken), permutation))
                break
            else:
                self.fail(
                    "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
                )
Ejemplo n.º 32
0
    def test_the_index_of_c_else_with_different_csc_set_name_as_python_else(
            self):
        wciSay = WhatCanISay.WhatCanISay()
        interp = CmdInterp()
        # do a csc set for python and a csc set for c
        # note: for try all went well in C, except for the setname
        cscs1 = CSCmdSet('try command python',
                         description='description of CSCS')
        cscs2 = CSCmdSet('try command C',
                         description='description duplicates of CSCS')
        cscs2.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_c_else_meanings,
                  docstring=csc_c_else_docstring))
        cscs1.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_python_else_meanings,
                  docstring=csc_python_else_docstring))
        interp.add_csc_set(cscs2)
        interp.add_csc_set(cscs1)
        interp.add_lsa(
            LSAlias(["plus"],
                    meanings={all_languages: " + "},
                    name="plus sign"))

        wciSay.load_commands_from_interpreter(self._app(), interp, 'C')
        expected = \
   {'C': {'else': [[{'action': 'else clause of a C conditional',
                  'doc': 'else clause only c',
                  'equiv': 'Language: C',
                  'scope': 'buffer',
                  'setdescription': 'description duplicates of CSCS',
                  'setname': 'try command C'}]],
        'plus': [{'description': 'no description',
                 'name': 'plus sign',
                 'new_symbol': None,
                 'setname': 'lsas',
                 'spacing': 0,
                 'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of else csc set in C different from expected")

        wciSay.load_commands_from_interpreter(self._app(), interp, 'python')
        expected = \
   {'python': {'else': [[{'action': 'no docstring available',
                       'doc': 'else clause only python',
                       'equiv': 'BlankLine: python',
                       'scope': 'immediate',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'},
                      {'action': "Inserts 'else on non blank line^' in current buffer",
                       'doc': 'else clause only python',
                       'equiv': 'Language: python',
                       'scope': 'buffer',
                       'setdescription': 'description of CSCS',
                       'setname': 'try command python'}]],
            'plus': [{'description': 'no description',
                      'name': 'plus sign',
                      'new_symbol': None,
                      'setname': 'lsas',
                      'spacing': 0,
                      'written_form': ' + '}]}}
        self.assert_equal(
            expected, wciSay.index,
            "index of else csc set in python different from expected")
Ejemplo n.º 33
0
class CSCmdTest(VoiceCodeRootTest.VoiceCodeRootTest):
    """tests of CSCmd and CSCmdDict

    """
    def __init__(self, name):
        VoiceCodeRootTest.VoiceCodeRootTest.__init__(self, name)

    def setUp(self):
        self.interp = CmdInterp()
        self.interp.add_csc(
            CSCmd(spoken_forms=csc_with_arguments_spoken_forms,
                  meanings=csc_with_arguments_meanings,
                  docstring=csc_with_arguments_docstring))
        self.interp.add_csc(
            CSCmd(spoken_forms=csc_else_spoken_forms,
                  meanings=csc_else_meanings,
                  docstring=csc_else_docstring))
        self.interp.add_csc(
            CSCmd(spoken_forms=csc_equals_spoken_forms,
                  meanings=csc_equals_meanings,
                  docstring=csc_equals_docstring))

##########################################################
# Documentation tests
#
# These tests illustrate how to use the class.
##########################################################

    def test_This_is_how_you_create_a_CSCmd_instance(self):
        command1 = CSCmd(spoken_forms=['hello'],
                         meanings={
                             'python': ActionInsert('hello python'),
                             'C': ActionInsert('hello C')
                         })
        command2 = CSCmd(spoken_forms=['hello'],
                         meanings={
                             contPython: ActionInsert('hello python'),
                             contC: ActionInsert('hello C')
                         })
        command3 = CSCmd(spoken_forms=['hello'],
                         meanings={
                             ContLanguage('python'):
                             ActionInsert('hello python'),
                             ContLanguage('C'): ActionInsert('hello C')
                         })
        self.assert_equal(command2, command1, \
                                "Csc commands 2 and 1 should have been the same with different ways to define")
        self.assert_equal(command3, command1, \
                                "Csc commands 3 and 1 should have been the same with different ways to define")

    def test_This_is_how_you_collect_all_the_CSC_commands_and_get_info(self):
        interp = CmdInterp()
        contAny = ContAny()
        actionHello = ActionInsert("hello")
        contBlankLine = ContBlankLine()
        actionThere = ActionInsert("there")
        actionOtherwise = ActionInsert("there otherwise")
        interp.add_csc(
            CSCmd(spoken_forms=['hello'],
                  meanings={contAny: actionHello},
                  docstring="hello"))

        interp.add_csc(
            CSCmd(spoken_forms=['there'],
                  meanings={
                      contBlankLine: actionThere,
                      contAny: actionOtherwise
                  },
                  docstring="there on blankline or otherwise"))

        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['hello']:
                cscmd_list_expected = [{
                    'action': "Inserts 'hello^' in current buffer",
                    'doc': 'hello',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'no description',
                    'setname': 'cscs'
                }]
            elif spoken == ['there']:
                cscmd_list_expected = [{
                    'action': "Inserts 'there^' in current buffer",
                    'doc': 'there on blankline or otherwise',
                    'equiv': 'BlankLine: any',
                    'scope': 'immediate',
                    'setdescription': 'no description',
                    'setname': 'cscs'
                }, {
                    'action': "Inserts 'there otherwise^' in current buffer",
                    'doc': 'there on blankline or otherwise',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'no description',
                    'setname': 'cscs'
                }]
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))

    def test_This_is_how_you_enter_and_get_info_through_CSCmdSet(self):
        interp = CmdInterp()
        actionHello = ActionInsert("csc hello")
        contAny = ContAny()
        cscs = CSCmdSet('csc demo set',
                        description='description of csc demo set')
        cscs.add_csc(
            CSCmd(spoken_forms=['hello'],
                  meanings={contAny: actionHello},
                  docstring="hello in csc set"))
        interp.add_csc_set(cscs)
        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['hello']:
                cscmd_list_expected = [{
                    'action': "Inserts 'csc hello^' in current buffer",
                    'doc': 'hello in csc set',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'
                }]
            else:
                self.fail(
                    "should not come here, testing error, should have exactly 1 spoken form"
                )
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))
            break
        else:
            self.fail(
                "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
            )

##########################################################
# Unit tests lsa and general commands
#
# These tests check the internal workings of the class.
##########################################################

    def test_Test_correct_order_of_CSCmdList1(self):
        interp = CmdInterp()
        actionHello = ActionInsert("csc hello")
        actionBlankLine = ActionInsert("csc blank")
        actionBeforeArguments = ActionInsert("csc before arguments")
        contBlankLine = ContBlankLine()
        contAny = ContAny()
        cscs = CSCmdSet('csc demo set',
                        description='description of csc demo set')
        # test the sorting of the csc :
        cscs.add_csc(
            CSCmd(spoken_forms=['hello'],
                  meanings={
                      ContPyBeforeArguments(): actionBeforeArguments,
                      contAny: actionHello,
                      contBlankLine: actionBlankLine
                  },
                  docstring="hello in csc set testlist1"))
        interp.add_csc_set(cscs)
        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['hello']:
                cscmd_list_expected = \
  [{'action': "Inserts 'csc blank^' in current buffer",
                'doc': 'hello in csc set testlist1',
                'equiv': 'BlankLine: any',
                'scope': 'immediate',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'},
                {'action': "Inserts 'csc before arguments^' in current buffer",
                'doc': 'hello in csc set testlist1',
                'equiv': 'ContPyBeforeArguments: python',
                'scope': 'immediate',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'},
                {'action': "Inserts 'csc hello^' in current buffer",
                'doc': 'hello in csc set testlist1',
                'equiv': 'Any',
                'scope': 'global',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'}]

            else:
                self.fail(
                    "should not come here, testing error, should have exactly 1 spoken form"
                )
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))
            break
        else:
            self.fail(
                "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
            )

    def test_Test_correct_order_of_CSCmdList2(self):
        interp = CmdInterp()
        actionHello = ActionInsert("csc inverted")
        actionBlankLine = ActionInsert("csc blank")
        # test the sorting of the csc inverted:
        contAny = ContAny()
        contBlankLine = ContBlankLine()
        cscs = CSCmdSet('csc demo set',
                        description='description of csc demo set')
        cscs.add_csc(
            CSCmd(spoken_forms=['inverted'],
                  meanings={
                      contBlankLine: actionBlankLine,
                      contAny: actionHello
                  },
                  docstring="hello in csc set testlist2"))

        interp.add_csc_set(cscs)
        wTrie = interp.commands
        for spoken, cscmd_list in wTrie.items():

            if spoken == ['inverted']:
                cscmd_list_expected =    [\
{'action': "Inserts 'csc blank^' in current buffer",
                'doc': 'hello in csc set testlist2',
                'equiv': 'BlankLine: any',
                'scope': 'immediate',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'},
                {'action': "Inserts 'csc inverted^' in current buffer",
                'doc': 'hello in csc set testlist2',
                'equiv': 'Any',
                'scope': 'global',
                'setdescription': 'description of csc demo set',
                'setname': 'csc demo set'}]
            else:
                self.fail(
                    "should not come here, testing error, should have exactly 1 spoken form"
                )
            visible_list = cscmd_list.get_info()
            self.assert_equal(
                cscmd_list_expected, visible_list,
                'wTrie CSCmdList of meanings with spoken form "%s" is not as expected'
                % repr(spoken))
            break
        else:
            self.fail(
                "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
            )

    # see ContextTest.py

    def test_Test_correct_order_of_CSCmdList_permutations_test(self):
        """Add meanings in different orders, placing in CSCmdList should be sorted right away"""
        actionHello = ActionInsert("csc hello")
        actionBlankLine = ActionInsert("csc blank")
        actionBeforeArguments = ActionInsert("csc before arguments")
        contBlankLine = ContBlankLine()
        contAny = ContAny()
        CAList = [(ContPyBeforeArguments(), actionBeforeArguments),
                  (contAny, actionHello), (contBlankLine, actionBlankLine)]

        for permutation in [(1, 2, 0), (2, 0, 1), (0, 2, 1), (1, 0, 2),
                            (2, 1, 0), (0, 1, 2)]:
            interp = CmdInterp()
            CAListPermuted = [CAList[i] for i in permutation]
            cscs = CSCmdSet('csc demo set',
                            description='description of csc demo set')
            # test the sorting of the csc. order of dict not important, always returning same CSCmdList:
            meanings = dict()
            for (c, a) in CAListPermuted:
                meanings[c] = a
            csc = CSCmd(spoken_forms=['hello'],
                        meanings=meanings,
                        docstring="hello in csc test permutations")
            cscs.add_csc(csc)
            interp.add_csc_set(cscs)
            wTrie = interp.commands
            for spoken, cscmd_list in wTrie.items():

                if spoken == ['hello']:
                    cscmd_list_expected = \
 [{'action': "Inserts 'csc blank^' in current buffer",
                    'doc': 'hello in csc test permutations',
                    'equiv': 'BlankLine: any',
                    'scope': 'immediate',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'},
                    {'action': "Inserts 'csc before arguments^' in current buffer",
                    'doc': 'hello in csc test permutations',
                    'equiv': 'ContPyBeforeArguments: python',
                    'scope': 'immediate',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'},
                    {'action': "Inserts 'csc hello^' in current buffer",
                    'doc': 'hello in csc test permutations',
                    'equiv': 'Any',
                    'scope': 'global',
                    'setdescription': 'description of csc demo set',
                    'setname': 'csc demo set'}]

                else:
                    self.fail(
                        "should not come here, testing error, should have exactly 1 spoken form"
                    )
                visible_list = cscmd_list.get_info()
                self.assert_equal(cscmd_list_expected, visible_list,
                                  'wTrie CSCmdList of meanings with spoken form "%s" (permutation: %s) is not as expected'% \
                                  (repr(spoken), permutation))
                break
            else:
                self.fail(
                    "no spoken forms in test, should not come here, testing error, should have 1 spoken form"
                )

    def test_Test_conflicing_context_instances(self):
        pass