Comment 32 for bug 1407105

Revision history for this message
OpenStack Infra (hudson-openstack) wrote : Fix merged to keystone (master)

Reviewed: https://review.openstack.org/146589
Committed: https://git.openstack.org/cgit/openstack/keystone/commit/?id=a22aa08bf2176ac2da75258223f58d70303259e4
Submitter: Jenkins
Branch: master

commit a22aa08bf2176ac2da75258223f58d70303259e4
Author: Dolph Mathews <email address hidden>
Date: Mon Jan 12 17:55:16 2015 +0000

    Additional test coverage for password changes

    Keystone has four API calls which may result in a user's password
    changing.

    1. Administrative password reset on v2:

        POST /v2.0/users/{user_id}/OS-KSADM/password

    2. Self-service password change on v2:

        PATCH /v2.0/OS-KSCRUD/users/{user_id}

    3. Administrative password reset on v3:

        POST /v3/users/{user_id}

    4. Self-service password change on v3:

        POST /v3/users/{user_id}/password

    This patch adds additional test coverage to *consistently* ensure that:

    - Old passwords no longer work
    - Old tokens no longer work
    - The new password works

    Change-Id: I2a296b7ed407c75018fff3b60bd13aaa4fa9a849
    Closes-Bug: 1407105