Bugzilla – Attachment 145351 Details for
Bug 30962
Add POST endpoint for validating a user password
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 30962: Add unit tests for /auth/password/validation endpoint
Bug-30962-Add-unit-tests-for-authpasswordvalidatio.patch (text/plain), 8.92 KB, created by
David Nind
on 2023-01-17 07:45:25 UTC
(
hide
)
Description:
Bug 30962: Add unit tests for /auth/password/validation endpoint
Filename:
MIME Type:
Creator:
David Nind
Created:
2023-01-17 07:45:25 UTC
Size:
8.92 KB
patch
obsolete
>From f85590fa6e8153c13f18278119cc56f82153bced Mon Sep 17 00:00:00 2001 >From: David Cook <dcook@prosentient.com.au> >Date: Wed, 4 Jan 2023 00:52:25 +0000 >Subject: [PATCH] Bug 30962: Add unit tests for /auth/password/validation > endpoint > >Test plan: >0. Apply patch >1. prove -v t/db_dependent/api/v1/password_validation.t > >Signed-off-by: David Nind <david@davidnind.com> >--- > t/db_dependent/api/v1/password_validation.t | 258 ++++++++++++++++++++ > 1 file changed, 258 insertions(+) > create mode 100755 t/db_dependent/api/v1/password_validation.t > >diff --git a/t/db_dependent/api/v1/password_validation.t b/t/db_dependent/api/v1/password_validation.t >new file mode 100755 >index 0000000000..b80741fd71 >--- /dev/null >+++ b/t/db_dependent/api/v1/password_validation.t >@@ -0,0 +1,258 @@ >+#!/usr/bin/perl >+ >+# >+# This file is part of Koha >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 7; >+use Test::Mojo; >+use Test::Warn; >+use Mojo::JWT; >+use Crypt::OpenSSL::RSA; >+ >+use t::lib::TestBuilder; >+use t::lib::Mocks; >+ >+use Koha::Database; >+use Koha::AuthUtils; >+use C4::Auth; >+use Data::Dumper; >+ >+my $schema = Koha::Database->new->schema; >+my $builder = t::lib::TestBuilder->new; >+ >+# FIXME: sessionStorage defaults to mysql, but it seems to break transaction handling >+# this affects the other REST api tests >+t::lib::Mocks::mock_preference( 'SessionStorage', 'tmp' ); >+ >+my $remote_address = '127.0.0.1'; >+ >+subtest 'password validation - success' => sub { >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 1 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ my $json = { >+ "username" => $userid, >+ "password" => "test", >+ }; >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => $json ); >+ $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ >+ my $resp = $t->request_ok($tx); >+ $resp->content_is(''); >+ $resp->status_is(204); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'password validation - account lock out' => sub { >+ plan tests => 6; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 1 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ t::lib::Mocks::mock_preference( 'FailedLoginAttempts', 1 ); >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => { "username" => $userid, "password" => "bad"} ); >+ $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ my $resp = $t->request_ok($tx); >+ $resp->json_is('/error' => 'Validation failed'); >+ $resp->status_is(400); >+ >+ my $tx2 = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => { "username" => $userid, "password" => "test"} ); >+ $tx2->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx2->req->env( { REMOTE_ADDR => $remote_address } ); >+ my $resp2 = $t->request_ok($tx2); >+ $resp2->json_is('/error' => 'Validation failed'); >+ $resp2->status_is(400); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+ >+subtest 'password validation - bad username' => sub { >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 1 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ my $json = { >+ "username" => '1234567890abcdefghijklmnopqrstuvwxyz@koha-community.org', >+ "password" => "test", >+ }; >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => $json ); >+ $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ >+ my $resp = $t->request_ok($tx); >+ $resp->json_is('/error' => 'Validation failed'); >+ $resp->status_is(400); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'password validation - bad password' => sub { >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 1 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ my $json = { >+ "username" => $userid, >+ "password" => "bad", >+ }; >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => $json ); >+ $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ >+ my $resp = $t->request_ok($tx); >+ $resp->json_is('/error' => 'Validation failed'); >+ $resp->status_is(400); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'password validation - syntax error in payload' => sub { >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 1 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ my $json = { >+ "username" => $userid, >+ "password2" => "test", >+ }; >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => $json ); >+ $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ >+ my $resp = $t->request_ok($tx); >+ $resp->json_is('' => {"errors" => [{"message" => "Properties not allowed: password2.","path" => "\/body"}],"status" => 400} ); >+ $resp->status_is(400); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'password validation - unauthorized user' => sub { >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 0 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ my $json = { >+ "username" => $userid, >+ "password" => "test", >+ }; >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => $json ); >+ $tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ >+ my $resp = $t->request_ok($tx); >+ $resp->json_is('/error' => 'Authorization failure. Missing required permission(s).'); >+ $resp->status_is(403); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'password validation - unauthenticated user' => sub { >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ my ( $borrowernumber, $session_id ) = create_user_and_session( { authorized => 0 } ); >+ my $patron = Koha::Patrons->find($borrowernumber); >+ my $userid = $patron->userid; >+ >+ my $t = Test::Mojo->new('Koha::REST::V1'); >+ >+ my $json = { >+ "username" => $userid, >+ "password" => "test", >+ }; >+ >+ my $tx = $t->ua->build_tx( POST => "/api/v1/auth/password/validation", json => $json ); >+ #$tx->req->cookies( { name => 'CGISESSID', value => $session_id } ); >+ $tx->req->env( { REMOTE_ADDR => $remote_address } ); >+ >+ my $resp = $t->request_ok($tx); >+ $resp->json_is('/error' => 'Authentication failure.'); >+ $resp->status_is(401); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+sub create_user_and_session { >+ >+ my $args = shift; >+ my $flags = ( $args->{authorized} ) ? 1 : 0; >+ >+ my $password = Koha::AuthUtils::hash_password('test'); >+ my $user = $builder->build( >+ { source => 'Borrower', >+ value => { flags => $flags, password => $password } >+ } >+ ); >+ >+ # Create a session for the authorized user >+ my $session = C4::Auth::get_session(''); >+ $session->param( 'number', $user->{borrowernumber} ); >+ $session->param( 'id', $user->{userid} ); >+ $session->param( 'ip', $remote_address ); >+ $session->param( 'lasttime', time() ); >+ $session->flush; >+ >+ return ( $user->{borrowernumber}, $session->id ); >+} >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 30962
:
136215
|
136300
|
144810
|
144964
|
144965
|
145350
|
145351
|
145765
|
145766
|
145767
|
145883
|
145884