CKAN - 将测试文件中的数据库绑定到数据库

时间:2017-10-18 18:42:45

标签: python session ckan

我正在尝试测试我写的CKAN扩展。基本上我想测试给定某些参数的函数,成功查询数据库并返回正确的数据。但是我收到了这个错误:

UnboundExecutionError:无法找到在映射器上配置的绑定器Mapper |用户|用户,SQL表达式或此会话

以下是测试: 进口单位测试 来自ckanext.matcher导入插件

class MatcherPluginTest(unittest.TestCase):

def setUp(self):
    # Create instances
    self.plugin_instance = plugin.MatcherPlugin()

def test_func_call(self):
    user_account = ’testUser'
    user_ckan = self.plugin_instance.get_ckanuser(user_account)
    self.assertEqual(user_ckan['display_name'], 'Shani Agent')

if __name__ == '__main__':
    unittest.main()

根据我的研究,此错误是由于会话变量未附加或绑定到数据库而导致的。所以我尝试按如下方式创建会话,但我仍然得到与上面相同的错误:

    def setUp(self):
        self.plugin_instance = plugin.MatcherPlugin()
        self.engine = create_engine('postgresql://...')
        self.Session = sessionmaker(bind=self.engine)
        self.session = self.Session()
    def test_func_call(self):
        user_account = ’testUser'
        user_ckan = self.session.add(self.plugin_instance.get_ckanuser(user_account))
        self.session.commit()
        self.assertEqual(user_ckan['display_name'], 'Shani Agent')

以下是get_ckanuser测试中调用的test_func_call函数:

    def get_ckanuser(self, user):
      import ckan.model

      user_ckan = ckan.model.User.by_name(user)

      # If the user exists, return user dictionary, else, return None
      if user_ckan:
          user_dict = toolkit.get_action('user_show')(data_dict={'id': user_ckan.id})
          return user_dict
      else:
          return None 

有没有办法将会话绑定到测试文件中的数据库?

1 个答案:

答案 0 :(得分:0)

数据库会话和一般Pylons必需品由nosetests Pylons插件设置。因此,您需要使用nosetests并使用其--with-pylons=../ckan/test-core.ini参数。

此处的文档位于:http://docs.ckan.org/en/latest/contributing/test.html#run-the-tests

另一件事,它没有必要改变,但使用nosetests,编写测试的首选方式略有不同。您可以在主CKAN代码库中找到示例测试,例如:https://github.com/datagovuk/ckanext-dgu/blob/master/ckanext/dgu/tests/functional/test_api.py