當前位置: 首頁>>代碼示例>>Python>>正文


Python User.save方法代碼示例

本文整理匯總了Python中libnemesis.User.save方法的典型用法代碼示例。如果您正苦於以下問題:Python User.save方法的具體用法?Python User.save怎麽用?Python User.save使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在libnemesis.User的用法示例。


在下文中一共展示了User.save方法的11個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_post_sets_own_password_and_name

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_post_sets_own_password_and_name():
    old_password = "blueshirt"
    new_password = 'bacon'
    old_first = "Blue"
    old_last  = "Shirt"

    params = {"username":"blueshirt",
              "password":old_password,
              "new_password":new_password,
              "new_first_name":'new_first',
              "new_last_name":'new_last',
              }

    r,data = test_helpers.server_post("/user/blueshirt", params)
    assert r.status == 200
    assert User("blueshirt")._user.bind(new_password)

    u = User("blueshirt")
    first = u.first_name
    last = u.last_name
    u.set_password(old_password)
    u.set_first_name(old_first)
    u.set_last_name(old_last)
    u.save()

    assert first == 'new_first'
    assert last == 'new_last'
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:29,代碼來源:test_users_post.py

示例2: verify_email

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def verify_email(username, code):
    """
    Verifies to the system that an email address exists, and assigns it to a user.
    Expected to be used only by users clicking links in email-verfication emails.
    Not part of the documented API.
    """

    change_request = PendingEmail(username)

    if not change_request.in_db:
        return "No such change request", 404, PLAINTEXT_HEADER

    email_change_days = config.config.getint('nemesis', 'email_change_days')
    max_age = timedelta(days = email_change_days)

    if change_request.age > max_age:
        return "Request not valid", 410, PLAINTEXT_HEADER

    if change_request.verify_code != code:
        return "Invalid verification code", 403, PLAINTEXT_HEADER

    log_action('changing email', user = username, new_email = change_request.new_email)

    u = User(change_request.username)
    u.set_email(change_request.new_email)
    u.save()

    return "Email address successfully changed", 200, PLAINTEXT_HEADER
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:30,代碼來源:app.py

示例3: verify_email

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def verify_email(username, code):
    """
    Verifies to the system that an email address exists, and assigns it to a user.
    Expected to be used only by users clicking links in email-verfication emails.
    Not part of the documented API.
    """

    change_request = PendingEmail(username)

    if not change_request.in_db:
        return "No such change request", 404

    if change_request.age > timedelta(days = 2):
        return "Request not valid", 410

    if change_request.verify_code != code:
        return "Invalid verification code", 403

    log_action('changing email', user = username, new_email = change_request.new_email)

    u = User(change_request.username)
    u.set_email(change_request.new_email)
    u.save()

    return "Email address successfully changed", 200
開發者ID:samphippen,項目名稱:nemesis,代碼行數:27,代碼來源:app.py

示例4: activate_account

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def activate_account(username, code):
    """
    Verifies to the system that an email address exists, and that the related
    account should be made into a full account.
    Expected to be used only by users clicking links in account-activation emails.
    Not part of the documented API.
    """

    pu = PendingUser(username)

    if not pu.in_db:
        return "No such user account", 404

    if pu.age > timedelta(days = 2):
        return "Request not valid", 410

    if pu.verify_code != code:
        return "Invalid verification code", 403

    log_action('activating user', pu)

    from libnemesis import srusers
    new_pass = srusers.users.GenPasswd()

    u = User(username)
    u.set_email(pu.email)
    u.set_team(pu.team)
    u.set_college(pu.college)
    u.set_password(new_pass)
    u.make_student()
    u.save()

    # let the team-leader know
    rq_user = User.create_user(pu.teacher_username)
    email_vars = { 'name': rq_user.first_name,
            'au_username': username,
          'au_first_name': u.first_name,
           'au_last_name': u.last_name
                 }
    mailer.email_template(rq_user.email, 'user_activated_team_leader', email_vars)

    pu.delete()

    html = open(PATH + "/templates/activate.html").read()
    replacements = { 'first_name': u.first_name
                   ,  'last_name': u.last_name
                   ,   'password': new_pass
                   ,      'email': u.email
                   ,   'username': username
                   ,       'root': url_for('.index')
                   }

    html = html.format(**replacements)

    return html, 200
開發者ID:samphippen,項目名稱:nemesis,代碼行數:57,代碼來源:app.py

示例5: test_post_sets_others_password

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_post_sets_others_password():
    old_password = "cows"

    params = {"username":"blueshirt",
              "password":"blueshirt",
              "new_password":"com",
              }

    r,data = test_helpers.server_post("/user/student_coll1_1", params)
    assert r.status == 200
    assert User("student_coll1_1")._user.bind("com")

    u = User("student_coll1_1")
    u.set_password(old_password)
    u.save()
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:17,代碼來源:test_users_post.py

示例6: test_team_leader_can_become_student

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_team_leader_can_become_student():
    # We need to test against another teacher, because team leaders demoting themselves is not allowed
    u = User("student_coll1_1")
    u.make_teacher()
    u.save()

    params = {"username": "teacher_coll1",
              "password": "facebees",
              "new_type": "student",
              }

    r,data = test_helpers.server_post("/user/student_coll1_1", params)
    assert r.status == 200

    assert not User("student_coll1_1").is_teacher
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:17,代碼來源:test_users_post.py

示例7: test_post_sets_own_password

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_post_sets_own_password():
    old_password = "blueshirt"
    new_password = 'bacon'

    params = {"username":"blueshirt",
              "password":old_password,
              "new_password":new_password,
              }

    r,data = test_helpers.server_post("/user/blueshirt", params)
    assert r.status == 200
    assert User("blueshirt")._user.bind(new_password)

    u = User("blueshirt")
    u.set_password(old_password)
    u.save()
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:18,代碼來源:test_users_post.py

示例8: test_post_teacher_sets_team

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_post_teacher_sets_team():
    old_team = "team-ABC"
    new_team = "team-DFE"

    params = {"username":"teacher_coll1",
              "password":"facebees",
              "new_team":new_team,
              }

    r,data = test_helpers.server_post("/user/student_coll1_1", params)
    assert r.status == 200

    u = User("student_coll1_1")
    teams = [t.name for t in u.teams]
    assert [new_team] == teams

    u.set_team(old_team)
    u.save()
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:20,代碼來源:test_users_post.py

示例9: test_team_leader_can_set_team_leader

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_team_leader_can_set_team_leader():
    params = {"username": "teacher_coll1",
              "password": "facebees",
              "new_type": "team-leader",
              }

    r,data = test_helpers.server_post("/user/student_coll1_1", params)
    assert r.status == 200

    u = User("student_coll1_1")
    is_teacher = u.is_teacher

    # Clean up
    u.make_student()
    u.save()

    # now assert (ensures the clean-up occurs)
    assert is_teacher
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:20,代碼來源:test_users_post.py

示例10: test_verify_success

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_verify_success():
    username = "student_coll1_1"
    old_email = User(username).email
    new_email = "[email protected]"

    setup_new_email('student_coll1_1', new_email, 'bees')

    r,data = test_helpers.server_get("/verify/" + username + "/bees")
    status = r.status
    assert status == 200, data

    u = User(username)
    email = u.email

    # restore the original first
    u.set_email(old_email)
    u.save()

    assert email == new_email
開發者ID:Krenair,項目名稱:nemesis,代碼行數:21,代碼來源:test_email_verification.py

示例11: test_post_sets_first_last_name

# 需要導入模塊: from libnemesis import User [as 別名]
# 或者: from libnemesis.User import save [as 別名]
def test_post_sets_first_last_name():
    old_first = "student1i"
    old_last  = "student"

    params = {"username":"blueshirt",
              "password":"blueshirt",
              "new_first_name":"asdf",
              "new_last_name":"cheese",
              }

    r,data = test_helpers.server_post("/user/student_coll1_1", params)
    assert r.status == 200
    details_dict = User("student_coll1_1").details_dictionary_for(User.create_user("student_coll1_1", "cows"))

    assert details_dict["first_name"] == "asdf"
    assert details_dict["last_name"] == "cheese"
    u = User("student_coll1_1")
    u.set_first_name(old_first)
    u.set_last_name(old_last)
    u.save()
開發者ID:PeterJCLaw,項目名稱:nemesis,代碼行數:22,代碼來源:test_users_post.py


注:本文中的libnemesis.User.save方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。