当前位置: 首页>>代码示例>>Python>>正文


Python Dependency.get_team方法代码示例

本文整理汇总了Python中common.utilities.inversion_of_control.Dependency.get_team方法的典型用法代码示例。如果您正苦于以下问题:Python Dependency.get_team方法的具体用法?Python Dependency.get_team怎么用?Python Dependency.get_team使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在common.utilities.inversion_of_control.Dependency的用法示例。


在下文中一共展示了Dependency.get_team方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: TestCoreUserAccess

# 需要导入模块: from common.utilities.inversion_of_control import Dependency [as 别名]
# 或者: from common.utilities.inversion_of_control.Dependency import get_team [as 别名]

#.........这里部分代码省略.........
        base64.b64encode("she sells sea shells by the sea shore").AndReturn("Salt-n-Pepa")

        #go into replay mode
        m.ReplayAll()

        user_dict = self.__get_user_dict()
        user = self.user_access.create_user(user_dict)

        # reset mocks & stubs
        m.ResetAll()
        m.UnsetStubs()

        m.StubOutWithMock(utils, "encrypt_password")
        m.StubOutWithMock(utils, "verify_password")
        m.StubOutWithMock(base64, "b64encode")
        m.StubOutWithMock(os, "urandom")

        utils.encrypt_password("yoda").AndReturn("the force")
        utils.verify_password("yoda", None).AndReturn(True)
        # mock the urandom return for the salt, and make sure that gets base-64 encoded into something different
        os.urandom(128).AndReturn("obi-wan")
        base64.b64encode("obi-wan").AndReturn("darth vader")

        m.ReplayAll()

        updated_user = self.user_access.update_user(user["id"], {"password": "yoda"})

        # we should have "encrypted" the password "yoda" to "the force", and added a new salt
        self.assertEqual(updated_user["password"], "the force")
        self.assertEqual(updated_user["salt"], "darth vader")

    def test_team_basic_crud(self):

        team_dict = self.__get_team_dict()
        team = self.user_access.create_team(team_dict)

        self.assertIn("id", team)
        self.assertEqual(team_dict["name"], team["name"])
        self.assertEqual(team_dict["description"], team["description"])
        self.assertEqual(team_dict["is_generalist"], team["is_generalist"])

        team2 = self.user_access.update_team(team["id"], {"name": "asdfasdf"})

        self.assertEqual(team2["name"], "asdfasdf")
        self.assertEqual(team2["id"], team["id"])

        team3 = self.user_access.get_team(team2["id"])

        self.assertEqual(team2, team3)

        result = self.user_access.delete_team(team3["id"])
        self.assertEqual(result, True)

        no_team = self.user_access.get_team(team2["id"])
        self.assertEqual(no_team, None)

    def test_team_create_with_users_and_industries(self):

        # create stub
        m = Mox()
        m.StubOutWithMock(utils, "encrypt_password")
        m.StubOutWithMock(base64, "b64encode")

        # start recording
        # can't seem to stub os.urandom here... returns None sometimes?
        base64.b64encode(IsA(str)).AndReturn("Larry")
开发者ID:erezrubinstein,项目名称:aa,代码行数:70,代码来源:test_core_user_access.py


注:本文中的common.utilities.inversion_of_control.Dependency.get_team方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。