| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 1 | use Mojo::Base -strict; | 
|  | 2 | use Test::More; | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 3 | use Test::Mojo::WithRoles 'Session'; | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 4 | use Mojo::File qw/path/; | 
|  | 5 | use Data::Dumper; | 
|  | 6 |  | 
|  | 7 |  | 
|  | 8 | ##################### | 
|  | 9 | # Start Fake server # | 
|  | 10 | ##################### | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 11 | my $mount_point = '/realapi/'; | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 12 | $ENV{KALAMAR_API} = $mount_point; | 
|  | 13 |  | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 14 | my $t = Test::Mojo::WithRoles->new('Kalamar' => { | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 15 | Kalamar => { | 
|  | 16 | plugins => ['Auth'] | 
|  | 17 | }, | 
|  | 18 | 'Kalamar-Auth' => { | 
|  | 19 | client_id => 2, | 
|  | 20 | client_secret => 'k414m4r-s3cr3t', | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 21 | oauth2 => 1, | 
|  | 22 | experimental_client_registration => 1 | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 23 | } | 
|  | 24 | }); | 
|  | 25 |  | 
|  | 26 | # Mount fake backend | 
|  | 27 | # Get the fixture path | 
|  | 28 | my $fixtures_path = path(Mojo::File->new(__FILE__)->dirname, '..', 'server'); | 
|  | 29 | my $fake_backend = $t->app->plugin( | 
|  | 30 | Mount => { | 
|  | 31 | $mount_point => | 
|  | 32 | $fixtures_path->child('mock.pl') | 
|  | 33 | } | 
|  | 34 | ); | 
|  | 35 | # Configure fake backend | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 36 | my $fake_backend_app = $fake_backend->pattern->defaults->{app}; | 
|  | 37 |  | 
|  | 38 | # Set general app logger for simplicity | 
|  | 39 | $fake_backend_app->log($t->app->log); | 
|  | 40 |  | 
|  | 41 | my $access_token = $fake_backend_app->get_token('access_token'); | 
|  | 42 | my $refresh_token = $fake_backend_app->get_token('refresh_token'); | 
|  | 43 | my $access_token_2 = $fake_backend_app->get_token('access_token_2'); | 
|  | 44 | my $refresh_token_2 = $fake_backend_app->get_token('refresh_token_2'); | 
|  | 45 |  | 
|  | 46 | # Some routes to modify the session | 
|  | 47 | # This expires the session | 
|  | 48 | $t->app->routes->get('/x/expire')->to( | 
|  | 49 | cb => sub { | 
|  | 50 | my $c = shift; | 
|  | 51 | $c->session(auth_exp => 0); | 
|  | 52 | return $c->render(text => 'okay') | 
|  | 53 | } | 
|  | 54 | ); | 
|  | 55 |  | 
|  | 56 | # This expires the session and removes the refresh token | 
|  | 57 | $t->app->routes->get('/x/expire-no-refresh')->to( | 
|  | 58 | cb => sub { | 
|  | 59 | my $c = shift; | 
|  | 60 | $c->session(auth_exp => 0); | 
|  | 61 | delete $c->session->{auth_r}; | 
|  | 62 | return $c->render(text => 'okay') | 
|  | 63 | } | 
|  | 64 | ); | 
|  | 65 |  | 
|  | 66 | # This sets an invalid token | 
|  | 67 | $t->app->routes->get('/x/invalid')->to( | 
|  | 68 | cb => sub { | 
|  | 69 | my $c = shift; | 
|  | 70 | $c->session(auth_exp => time + 1000); | 
|  | 71 | $c->session(auth_r => $refresh_token_2); | 
|  | 72 | $c->session(auth => 'Bearer inv4lid'); | 
|  | 73 | return $c->render(text => 'okay') | 
|  | 74 | } | 
|  | 75 | ); | 
|  | 76 |  | 
|  | 77 |  | 
|  | 78 | # This sets an invalid token | 
|  | 79 | $t->app->routes->get('/x/invalid-no-refresh')->to( | 
|  | 80 | cb => sub { | 
|  | 81 | my $c = shift; | 
|  | 82 | $c->session(auth_exp => time + 1000); | 
|  | 83 | delete $c->session->{auth_r}; | 
|  | 84 | $c->session(auth => 'Bearer inv4lid'); | 
|  | 85 | return $c->render(text => 'okay') | 
|  | 86 | } | 
|  | 87 | ); | 
|  | 88 |  | 
|  | 89 | # This sets an invalid refresh token | 
|  | 90 | $t->app->routes->get('/x/expired-with-wrong-refresh')->to( | 
|  | 91 | cb => sub { | 
|  | 92 | my $c = shift; | 
|  | 93 | $c->session(auth_exp => 0); | 
|  | 94 | $c->session(auth => 'Bearer inv4lid'); | 
|  | 95 | $c->session(auth_r => 'inv4lid'); | 
|  | 96 | return $c->render(text => 'okay') | 
|  | 97 | } | 
|  | 98 | ); | 
|  | 99 |  | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 100 | my $q = qr!(?:\"|")!; | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 101 |  | 
| Akron | 63d963b | 2019-07-05 15:35:51 +0200 | [diff] [blame] | 102 | $t->get_ok('/realapi/v1.0') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 103 | ->status_is(200) | 
|  | 104 | ->content_is('Fake server available'); | 
|  | 105 |  | 
|  | 106 | $t->get_ok('/?q=Baum') | 
|  | 107 | ->status_is(200) | 
|  | 108 | ->text_like('h1 span', qr/KorAP: Find .Baum./i) | 
|  | 109 | ->text_like('#total-results', qr/\d+$/) | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 110 | ->content_like(qr/${q}authorized${q}:null/) | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 111 | ->element_exists_not('div.button.top a') | 
|  | 112 | ->element_exists_not('aside.active') | 
|  | 113 | ->element_exists_not('aside.off') | 
|  | 114 | ; | 
|  | 115 |  | 
|  | 116 | $t->get_ok('/') | 
|  | 117 | ->status_is(200) | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 118 | ->element_exists('form[action=/user/login] input[name=handle]') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 119 | ->element_exists('aside.active') | 
|  | 120 | ->element_exists_not('aside.off') | 
|  | 121 | ; | 
|  | 122 |  | 
| Akron | ff08811 | 2021-06-15 15:26:04 +0200 | [diff] [blame^] | 123 | $t->get_ok('/settings/oauth') | 
|  | 124 | ->status_is(401) | 
|  | 125 | ->text_is('p.no-results', 'Not authenticated') | 
|  | 126 | ; | 
|  | 127 |  | 
| Akron | 3e0fdc1 | 2020-05-15 16:17:21 +0200 | [diff] [blame] | 128 | # Test for bug with long password | 
|  | 129 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 130 | handle => 'test', | 
| Akron | 3e0fdc1 | 2020-05-15 16:17:21 +0200 | [diff] [blame] | 131 | pwd => 'kjskjhndkjndqknaskjnakjdnkjdankajdnkjdsankjdsakjdfkjahzroiuqzriudjoijdmlamdlkmdsalkmdl' }) | 
|  | 132 | ->status_is(302) | 
|  | 133 | ->header_is('Location' => '/'); | 
|  | 134 |  | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 135 | $t->post_ok('/user/login' => form => { handle => 'test', pwd => 'fail' }) | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 136 | ->status_is(302) | 
|  | 137 | ->header_is('Location' => '/'); | 
|  | 138 |  | 
|  | 139 | $t->get_ok('/') | 
|  | 140 | ->status_is(200) | 
|  | 141 | ->element_exists('div.notify-error') | 
|  | 142 | ->text_is('div.notify-error', 'Bad CSRF token') | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 143 | ->element_exists('input[name=handle][value=test]') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 144 | ->element_exists_not('div.button.top a') | 
|  | 145 | ; | 
|  | 146 |  | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 147 | $t->post_ok('/user/login' => form => { handle => 'test', pwd => 'pass' }) | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 148 | ->status_is(302) | 
|  | 149 | ->header_is('Location' => '/'); | 
|  | 150 |  | 
|  | 151 | my $csrf = $t->get_ok('/') | 
|  | 152 | ->status_is(200) | 
|  | 153 | ->element_exists('div.notify-error') | 
|  | 154 | ->text_is('div.notify-error', 'Bad CSRF token') | 
|  | 155 | ->element_exists_not('div.button.top a') | 
|  | 156 | ->tx->res->dom->at('input[name=csrf_token]')->attr('value') | 
|  | 157 | ; | 
|  | 158 |  | 
|  | 159 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 160 | handle => 'test', | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 161 | pwd => 'ldaperr', | 
|  | 162 | csrf_token => $csrf | 
|  | 163 | }) | 
|  | 164 | ->status_is(302) | 
|  | 165 | ->content_is('') | 
|  | 166 | ->header_is('Location' => '/'); | 
|  | 167 |  | 
|  | 168 | $csrf = $t->get_ok('/') | 
|  | 169 | ->status_is(200) | 
|  | 170 | ->element_exists('div.notify-error') | 
|  | 171 | ->text_is('div.notify-error', '2022: LDAP Authentication failed due to unknown user or password!') | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 172 | ->element_exists('input[name=handle][value=test]') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 173 | ->element_exists_not('div.button.top a') | 
| Akron | 3b3c7af | 2020-05-15 16:23:55 +0200 | [diff] [blame] | 174 | ->element_exists_not('div.notify-success') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 175 | ->tx->res->dom->at('input[name=csrf_token]')->attr('value') | 
|  | 176 | ; | 
|  | 177 |  | 
|  | 178 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 179 | handle => 'test', | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 180 | pwd => 'unknown', | 
|  | 181 | csrf_token => $csrf | 
|  | 182 | }) | 
|  | 183 | ->status_is(302) | 
|  | 184 | ->content_is('') | 
|  | 185 | ->header_is('Location' => '/'); | 
|  | 186 |  | 
|  | 187 | $csrf = $t->get_ok('/') | 
|  | 188 | ->status_is(200) | 
|  | 189 | ->element_exists('div.notify-error') | 
| Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 190 | ->text_is('div.notify-error', '2022: LDAP Authentication failed due to unknown user or password!') | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 191 | ->element_exists('input[name=handle][value=test]') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 192 | ->element_exists_not('div.button.top a') | 
|  | 193 | ->tx->res->dom->at('input[name=csrf_token]')->attr('value') | 
|  | 194 | ; | 
|  | 195 |  | 
|  | 196 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 197 | handle => 'test', | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 198 | pwd => 'pass', | 
|  | 199 | csrf_token => $csrf | 
|  | 200 | }) | 
|  | 201 | ->status_is(302) | 
|  | 202 | ->content_is('') | 
|  | 203 | ->header_is('Location' => '/'); | 
|  | 204 |  | 
|  | 205 | $t->get_ok('/') | 
|  | 206 | ->status_is(200) | 
|  | 207 | ->element_exists_not('div.notify-error') | 
|  | 208 | ->element_exists('div.notify-success') | 
|  | 209 | ->text_is('div.notify-success', 'Login successful') | 
| Akron | 1d09b53 | 2021-06-15 18:18:25 +0200 | [diff] [blame] | 210 | ->element_exists_not('aside.off') | 
|  | 211 | ->element_exists('aside.active') | 
|  | 212 | ->element_exists('aside.settings') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 213 | ; | 
|  | 214 |  | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 215 | # Now the user is logged in and should be able to | 
|  | 216 | # search with authorization | 
|  | 217 | $t->get_ok('/?q=Baum') | 
|  | 218 | ->status_is(200) | 
| Akron | 4cefe1f | 2019-09-04 10:11:28 +0200 | [diff] [blame] | 219 | ->session_has('/auth') | 
|  | 220 | ->session_is('/auth', 'Bearer ' . $access_token) | 
|  | 221 | ->session_is('/auth_r', $refresh_token) | 
|  | 222 | ->session_is('/user', 'test') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 223 | ->text_like('h1 span', qr/KorAP: Find .Baum./i) | 
|  | 224 | ->text_like('#total-results', qr/\d+$/) | 
|  | 225 | ->element_exists_not('div.notify-error') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 226 | ->content_like(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 227 | ->element_exists('div.button.top a') | 
|  | 228 | ->element_exists('div.button.top a.logout[title~="test"]') | 
|  | 229 | ; | 
|  | 230 |  | 
| Akron | 27031aa | 2020-04-28 14:57:10 +0200 | [diff] [blame] | 231 | $t->get_ok('/?q=Paum') | 
|  | 232 | ->status_is(200) | 
|  | 233 | ->text_like('h1 span', qr/KorAP: Find .Paum./i) | 
|  | 234 | ->text_is('#total-results', '') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 235 | ->content_like(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | 27031aa | 2020-04-28 14:57:10 +0200 | [diff] [blame] | 236 | ->element_exists_not('p.hint') | 
|  | 237 | ; | 
|  | 238 |  | 
|  | 239 |  | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 240 | # Logout | 
|  | 241 | $t->get_ok('/user/logout') | 
|  | 242 | ->status_is(302) | 
| Akron | 4cefe1f | 2019-09-04 10:11:28 +0200 | [diff] [blame] | 243 | ->session_hasnt('/auth') | 
|  | 244 | ->session_hasnt('/auth_r') | 
|  | 245 | ->session_hasnt('/user') | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 246 | ->header_is('Location' => '/'); | 
|  | 247 |  | 
|  | 248 | $t->get_ok('/') | 
|  | 249 | ->status_is(200) | 
|  | 250 | ->element_exists_not('div.notify-error') | 
|  | 251 | ->element_exists('div.notify-success') | 
|  | 252 | ->text_is('div.notify-success', 'Logout successful') | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 253 | ->element_exists("input[name=handle]") | 
|  | 254 | ->element_exists("input[name=handle][value=test]") | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 255 | ; | 
|  | 256 |  | 
|  | 257 | $t->get_ok('/?q=Baum') | 
|  | 258 | ->status_is(200) | 
|  | 259 | ->text_like('h1 span', qr/KorAP: Find .Baum./i) | 
|  | 260 | ->text_like('#total-results', qr/\d+$/) | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 261 | ->content_like(qr/${q}authorized${q}:null/) | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 262 | ; | 
|  | 263 |  | 
| Akron | 27031aa | 2020-04-28 14:57:10 +0200 | [diff] [blame] | 264 | $t->get_ok('/?q=Paum') | 
|  | 265 | ->status_is(200) | 
|  | 266 | ->text_like('h1 span', qr/KorAP: Find .Paum./i) | 
|  | 267 | ->text_is('#total-results', '') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 268 | ->content_like(qr/${q}authorized${q}:null/) | 
| Akron | 27031aa | 2020-04-28 14:57:10 +0200 | [diff] [blame] | 269 | ->text_is('p.hint', 'Maybe you need to log in first?') | 
|  | 270 | ; | 
|  | 271 |  | 
|  | 272 |  | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 273 | # Get redirect | 
|  | 274 | my $fwd = $t->get_ok('/?q=Baum&ql=poliqarp') | 
|  | 275 | ->status_is(200) | 
|  | 276 | ->element_exists_not('div.notify-error') | 
|  | 277 | ->tx->res->dom->at('input[name=fwd]')->attr('value') | 
|  | 278 | ; | 
|  | 279 |  | 
|  | 280 | is($fwd, '/?q=Baum&ql=poliqarp', 'Redirect is valid'); | 
|  | 281 |  | 
|  | 282 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 283 | handle => 'test', | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 284 | pwd => 'pass', | 
|  | 285 | csrf_token => $csrf, | 
|  | 286 | fwd => 'http://bad.example.com/test' | 
|  | 287 | }) | 
|  | 288 | ->status_is(302) | 
|  | 289 | ->header_is('Location' => '/'); | 
|  | 290 |  | 
|  | 291 | $t->get_ok('/') | 
|  | 292 | ->status_is(200) | 
|  | 293 | ->element_exists('div.notify-error') | 
|  | 294 | ->element_exists_not('div.notify-success') | 
|  | 295 | ->text_is('div.notify-error', 'Redirect failure') | 
|  | 296 | ; | 
|  | 297 |  | 
|  | 298 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 299 | handle => 'test', | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 300 | pwd => 'pass', | 
|  | 301 | csrf_token => $csrf, | 
|  | 302 | fwd => $fwd | 
|  | 303 | }) | 
|  | 304 | ->status_is(302) | 
|  | 305 | ->header_is('Location' => '/?q=Baum&ql=poliqarp'); | 
|  | 306 |  | 
| Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 307 | $t->get_ok('/?q=Baum&ql=poliqarp') | 
|  | 308 | ->status_is(200) | 
|  | 309 | ->element_exists_not('div.notify-error') | 
|  | 310 | ->element_exists('div.notify-success') | 
|  | 311 | ->text_is('div.notify-success', 'Login successful') | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 312 | ->session_has('/auth') | 
|  | 313 | ->session_is('/auth', 'Bearer ' . $access_token) | 
|  | 314 | ->session_is('/auth_r', $refresh_token) | 
|  | 315 | ->header_isnt('X-Kalamar-Cache', 'true') | 
| Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 316 | ; | 
|  | 317 |  | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 318 | # Expire the session | 
|  | 319 | # (makes the token be marked as expired - though it isn't serverside) | 
|  | 320 | $t->get_ok('/x/expire') | 
| Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 321 | ->status_is(200) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 322 | ->content_is('okay') | 
|  | 323 | ; | 
|  | 324 |  | 
|  | 325 | ## It may be a problem, but the cache is still valid | 
|  | 326 | $t->get_ok('/?q=Baum') | 
|  | 327 | ->status_is(200) | 
|  | 328 | ->text_like('h1 span', qr/KorAP: Find .Baum./i) | 
|  | 329 | ->text_like('#total-results', qr/\d+$/) | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 330 | ->content_like(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 331 | ->header_is('X-Kalamar-Cache', 'true') | 
|  | 332 | ; | 
|  | 333 |  | 
|  | 334 | # Query without partial cache (unfortunately) (but no total results) | 
|  | 335 | $t->get_ok('/?q=baum&cutoff=true') | 
|  | 336 | ->status_is(200) | 
|  | 337 | ->session_is('/auth', 'Bearer ' . $access_token_2) | 
|  | 338 | ->session_is('/auth_r', $refresh_token_2) | 
|  | 339 | ->text_is('#error','') | 
|  | 340 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') | 
|  | 341 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') | 
|  | 342 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 343 | ->content_like(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 344 | ->header_isnt('X-Kalamar-Cache', 'true') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 345 | ->content_like(qr!${q}cutOff${q}:true!) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 346 | ->element_exists_not('#total-results') | 
|  | 347 | ; | 
|  | 348 |  | 
|  | 349 | # Expire the session and remove the refresh option | 
|  | 350 | $t->get_ok('/x/expire-no-refresh') | 
|  | 351 | ->status_is(200) | 
|  | 352 | ->content_is('okay') | 
|  | 353 | ; | 
|  | 354 |  | 
|  | 355 | $t->app->defaults(no_cache => 1); | 
|  | 356 |  | 
|  | 357 |  | 
|  | 358 | $t->get_ok('/x/invalid-no-refresh') | 
|  | 359 | ->status_is(200) | 
|  | 360 | ->content_is('okay') | 
|  | 361 | ; | 
|  | 362 |  | 
|  | 363 | # Query without cache | 
|  | 364 | # The token is invalid and can't be refreshed! | 
|  | 365 | $t->get_ok('/?q=baum&cutoff=true') | 
| Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 366 | ->status_is(400) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 367 | ->session_hasnt('/auth') | 
|  | 368 | ->session_hasnt('/auth_r') | 
|  | 369 | ->text_is('#error','') | 
|  | 370 | ->text_is('div.notify-error','Access token invalid') | 
|  | 371 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') | 
|  | 372 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') | 
|  | 373 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 374 | ->content_unlike(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 375 | ->header_isnt('X-Kalamar-Cache', 'true') | 
|  | 376 | ->element_exists('p.no-results') | 
|  | 377 | ; | 
|  | 378 |  | 
|  | 379 | $t->get_ok('/x/invalid') | 
|  | 380 | ->status_is(200) | 
|  | 381 | ->content_is('okay') | 
|  | 382 | ; | 
|  | 383 |  | 
|  | 384 | # Query without cache | 
|  | 385 | # The token is invalid and can't be refreshed! | 
|  | 386 | $t->get_ok('/?q=baum&cutoff=true') | 
|  | 387 | ->status_is(200) | 
|  | 388 | ->session_is('/auth', 'Bearer ' . $access_token_2) | 
|  | 389 | ->session_is('/auth_r', $refresh_token_2) | 
|  | 390 | ->text_is('#error','') | 
|  | 391 | ->element_exists_not('div.notify-error','Access token invalid') | 
|  | 392 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') | 
|  | 393 | ->element_exists('meta[name="DC.title"][content="KorAP: Find »baum« with Poliqarp"]') | 
|  | 394 | ->element_exists('body[itemscope][itemtype="http://schema.org/SearchResultsPage"]') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 395 | ->content_like(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 396 | ->header_isnt('X-Kalamar-Cache', 'true') | 
|  | 397 | ->element_exists_not('p.no-results') | 
| Akron | 8bbbecf | 2019-07-01 18:57:30 +0200 | [diff] [blame] | 398 | ; | 
|  | 399 |  | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 400 |  | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 401 | $t->get_ok('/x/expired-with-wrong-refresh') | 
|  | 402 | ->status_is(200) | 
|  | 403 | ->content_is('okay') | 
|  | 404 | ; | 
| Akron | 4796e00 | 2019-07-05 10:13:15 +0200 | [diff] [blame] | 405 |  | 
| Akron | 4796e00 | 2019-07-05 10:13:15 +0200 | [diff] [blame] | 406 |  | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 407 | # The token is invalid and can't be refreshed! | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 408 | $csrf = $t->get_ok('/?q=baum&cutoff=true') | 
| Akron | 3c390c4 | 2020-03-30 09:06:21 +0200 | [diff] [blame] | 409 | ->status_is(400) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 410 | ->session_hasnt('/auth') | 
|  | 411 | ->session_hasnt('/auth_r') | 
|  | 412 | ->text_is('#error','') | 
|  | 413 | ->text_is('div.notify-error','Refresh token is expired') | 
|  | 414 | ->text_is('title', 'KorAP: Find »baum« with Poliqarp') | 
| Akron | bc6b3f2 | 2021-01-13 14:53:12 +0100 | [diff] [blame] | 415 | ->content_unlike(qr/${q}authorized${q}:${q}yes${q}/) | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 416 | ->element_exists('p.no-results') | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 417 | ->tx->res->dom->at('input[name="csrf_token"]') | 
|  | 418 | ->attr('value') | 
| Akron | cdfd9d5 | 2019-07-23 11:35:00 +0200 | [diff] [blame] | 419 | ; | 
| Akron | 4796e00 | 2019-07-05 10:13:15 +0200 | [diff] [blame] | 420 |  | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 421 | # Login: | 
|  | 422 | $t->post_ok('/user/login' => form => { | 
| Akron | e208d30 | 2020-11-28 11:14:50 +0100 | [diff] [blame] | 423 | handle => 'test', | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 424 | pwd => 'pass', | 
|  | 425 | csrf_token => $csrf | 
|  | 426 | }) | 
|  | 427 | ->status_is(302) | 
|  | 428 | ->content_is('') | 
|  | 429 | ->header_is('Location' => '/'); | 
|  | 430 |  | 
|  | 431 | $t->get_ok('/') | 
|  | 432 | ->status_is(200) | 
|  | 433 | ->element_exists_not('div.notify-error') | 
|  | 434 | ->element_exists('div.notify-success') | 
|  | 435 | ->text_is('div.notify-success', 'Login successful') | 
| Akron | 1d09b53 | 2021-06-15 18:18:25 +0200 | [diff] [blame] | 436 | ->element_exists_not('aside.off') | 
|  | 437 | ->element_exists('aside.active') | 
|  | 438 | ->element_exists('aside.settings') | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 439 | ; | 
|  | 440 |  | 
|  | 441 | $t->get_ok('/settings/oauth') | 
|  | 442 | ->text_is('form.form-table legend', 'Register new client application') | 
|  | 443 | ->attr_is('form.oauth-register','action', '/settings/oauth/register') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 444 | ->element_exists('ul.client-list') | 
|  | 445 | ->element_exists_not('ul.client-list > li') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 446 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 447 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 448 | ->header_is('Pragma','no-cache') | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 449 | ; | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 450 |  | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 451 | $csrf = $t->post_ok('/settings/oauth/register' => form => { | 
|  | 452 | name => 'MyApp', | 
|  | 453 | type => 'PUBLIC', | 
|  | 454 | desc => 'This is my application' | 
|  | 455 | }) | 
|  | 456 | ->text_is('div.notify-error', 'Bad CSRF token') | 
|  | 457 | ->tx->res->dom->at('input[name="csrf_token"]') | 
|  | 458 | ->attr('value') | 
|  | 459 | ; | 
|  | 460 |  | 
|  | 461 | $t->post_ok('/settings/oauth/register' => form => { | 
|  | 462 | name => 'MyApp', | 
|  | 463 | type => 'CONFIDENTIAL', | 
|  | 464 | desc => 'This is my application', | 
|  | 465 | csrf_token => $csrf | 
|  | 466 | }) | 
|  | 467 | ->status_is(200) | 
|  | 468 | ->element_exists('div.notify-success') | 
|  | 469 | ->text_is('legend', 'Client Credentials') | 
|  | 470 | ->text_is('label[for=client_id]', 'ID of the client application') | 
|  | 471 | ->element_exists('input[name=client_id][readonly][value]') | 
|  | 472 | ->element_exists('input[name=client_secret][readonly][value]') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 473 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 474 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 475 | ->header_is('Pragma','no-cache') | 
| Akron | 5999212 | 2019-10-29 11:28:45 +0100 | [diff] [blame] | 476 | ; | 
| Akron | 4796e00 | 2019-07-05 10:13:15 +0200 | [diff] [blame] | 477 |  | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 478 | $t->get_ok('/settings/oauth') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 479 | ->text_is('.form-table legend', 'Register new client application') | 
|  | 480 | ->attr_is('.oauth-register','action', '/settings/oauth/register') | 
| Akron | 17de86e | 2020-04-16 16:03:40 +0200 | [diff] [blame] | 481 | ->text_is('ul.client-list > li > span.client-name a', 'MyApp') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 482 | ->text_is('ul.client-list > li > span.client-desc', 'This is my application') | 
|  | 483 | ->text_is('ul.client-list > li > span.client-url a', '') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 484 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 485 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 486 | ->header_is('Pragma','no-cache') | 
| Akron | 17de86e | 2020-04-16 16:03:40 +0200 | [diff] [blame] | 487 | ; | 
|  | 488 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 489 | $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | 17de86e | 2020-04-16 16:03:40 +0200 | [diff] [blame] | 490 | ->status_is(200) | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 491 | ->text_is('ul.client-list > li.client > span.client-name', 'MyApp') | 
|  | 492 | ->text_is('ul.client-list > li.client > span.client-desc', 'This is my application') | 
| Akron | 17de86e | 2020-04-16 16:03:40 +0200 | [diff] [blame] | 493 | ->text_is('a.client-unregister', 'Unregister') | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 494 | ->attr_is('a.client-unregister', 'href', '/settings/oauth/fCBbQkA2NDA3MzM1Yw==/unregister?name=MyApp') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 495 | ; | 
|  | 496 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 497 | $csrf = $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/unregister?name=MyApp') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 498 | ->content_like(qr!Do you really want to unregister \<span class="client-name"\>MyApp\<\/span\>?!) | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 499 | ->attr_is('.form-table input[name=client-name]', 'value', 'MyApp') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 500 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 501 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 502 | ->header_is('Pragma','no-cache') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 503 | ->tx->res->dom->at('input[name="csrf_token"]') | 
|  | 504 | ->attr('value') | 
|  | 505 | ; | 
|  | 506 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 507 | $t->post_ok('/settings/oauth/xxxx==/unregister' => form => { | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 508 | 'client-name' => 'MyApp', | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 509 | 'csrf_token' => $csrf | 
|  | 510 | })->status_is(302) | 
|  | 511 | ->content_is('') | 
|  | 512 | ->header_is('Location' => '/settings/oauth') | 
|  | 513 | ; | 
|  | 514 |  | 
|  | 515 | $t->get_ok('/settings/oauth') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 516 | ->text_is('.form-table legend', 'Register new client application') | 
|  | 517 | ->attr_is('.oauth-register','action', '/settings/oauth/register') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 518 | ->element_exists('ul.client-list > li') | 
|  | 519 | ->text_is('div.notify', 'Unknown client with xxxx==.') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 520 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 521 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 522 | ->header_is('Pragma','no-cache') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 523 | ; | 
|  | 524 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 525 | $t->post_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/unregister' => form => { | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 526 | 'client-name' => 'MyApp', | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 527 | 'csrf_token' => $csrf | 
|  | 528 | })->status_is(302) | 
|  | 529 | ->content_is('') | 
|  | 530 | ->header_is('Location' => '/settings/oauth') | 
|  | 531 | ; | 
|  | 532 |  | 
|  | 533 | $t->get_ok('/settings/oauth') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 534 | ->text_is('.form-table legend', 'Register new client application') | 
|  | 535 | ->attr_is('.oauth-register','action', '/settings/oauth/register') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 536 | ->element_exists_not('ul.client-list > li') | 
|  | 537 | ->text_is('div.notify-success', 'Successfully deleted MyApp') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 538 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 539 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 540 | ->header_is('Pragma','no-cache') | 
| Akron | 1a9d5be | 2020-03-19 17:28:33 +0100 | [diff] [blame] | 541 | ; | 
|  | 542 |  | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 543 | $t->post_ok('/settings/oauth/register' => form => { | 
|  | 544 | name => 'MyApp2', | 
|  | 545 | type => 'PUBLIC', | 
|  | 546 | desc => 'This is my application', | 
|  | 547 | csrf_token => $csrf | 
|  | 548 | })->status_is(200) | 
|  | 549 | ->element_exists('div.notify-success') | 
|  | 550 | ->text_is('legend', 'Client Credentials') | 
|  | 551 | ->text_is('label[for=client_id]', 'ID of the client application') | 
|  | 552 | ->element_exists('input[name=client_id][readonly][value]') | 
|  | 553 | ->element_exists_not('input[name=client_secret][readonly][value]') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 554 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 555 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 556 | ->header_is('Pragma','no-cache') | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 557 | ; | 
|  | 558 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 559 | $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 560 | ->text_is('.client-name', 'MyApp2') | 
|  | 561 | ->text_is('.client-desc', 'This is my application') | 
| Akron | e997bb5 | 2021-06-11 16:44:06 +0200 | [diff] [blame] | 562 | ->text_is('.client-issue-token', 'Issue new token') | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 563 | ->attr_is('.client-issue-token', 'href', '/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token?name=MyApp2') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 564 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 565 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 566 | ->header_is('Pragma','no-cache') | 
| Akron | e997bb5 | 2021-06-11 16:44:06 +0200 | [diff] [blame] | 567 | ->text_is('ul.token-list label[for=token]', 'Access Token') | 
|  | 568 | ->text_is('p[name=created]', 'Created at ') | 
|  | 569 | ->text_is('p[name=expires]', 'Expires in 31533851 seconds.') | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 570 | ; | 
|  | 571 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 572 | $csrf = $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token?name=MyApp2') | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 573 | ->status_is(200) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 574 | ->attr_is('#issue-token','action', '/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token') | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 575 | ->attr_is('input[name=client-id]', 'value', 'fCBbQkA2NDA3MzM1Yw==') | 
|  | 576 | ->attr_is('input[name=name]', 'value', 'MyApp2') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 577 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 578 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 579 | ->header_is('Pragma','no-cache') | 
| Akron | e997bb5 | 2021-06-11 16:44:06 +0200 | [diff] [blame] | 580 | ->text_is('a.button-abort', 'Abort') | 
|  | 581 | ->attr_is('#issue-token input[type=submit]', 'value', 'Issue new token') | 
|  | 582 | ->content_like(qr!Issue a new token for!) | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 583 | ->tx->res->dom->at('input[name="csrf_token"]') | 
|  | 584 | ->attr('value') | 
|  | 585 | ; | 
|  | 586 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 587 | $t->post_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token' => form => { | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 588 | csrf_token => $csrf, | 
|  | 589 | name => 'MyApp2', | 
|  | 590 | 'client-id' => 'fCBbQkA2NDA3MzM1Yw==' | 
|  | 591 | }) | 
| Akron | bc94a9c | 2021-04-15 00:07:35 +0200 | [diff] [blame] | 592 | ->status_is(302) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 593 | ->header_is('Location','/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | bc94a9c | 2021-04-15 00:07:35 +0200 | [diff] [blame] | 594 | ; | 
|  | 595 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 596 | $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
|  | 597 | ->status_is(200) | 
| Akron | bc94a9c | 2021-04-15 00:07:35 +0200 | [diff] [blame] | 598 | ->text_is('div.notify-success', 'New access token created') | 
| Akron | ad011bb | 2021-06-10 12:16:36 +0200 | [diff] [blame] | 599 | ->status_is(200) | 
|  | 600 | ->header_is('Cache-Control','max-age=0, no-cache, no-store, must-revalidate') | 
|  | 601 | ->header_is('Expires','Thu, 01 Jan 1970 00:00:00 GMT') | 
|  | 602 | ->header_is('Pragma','no-cache') | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 603 | ; | 
|  | 604 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 605 | $csrf = $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 606 | ->status_is(200) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 607 | ->attr_is('form.token-revoke', 'action', '/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token/revoke') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 608 | ->attr_is('form.token-revoke input[name=token]', 'value', 'jhkhkjhk_hjgjsfz67i') | 
|  | 609 | ->attr_is('form.token-revoke input[name=name]', 'value', 'MyApp2') | 
|  | 610 | ->tx->res->dom->at('input[name="csrf_token"]') | 
|  | 611 | ->attr('value') | 
|  | 612 | ; | 
|  | 613 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 614 | $t->post_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token/revoke' => form => { | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 615 | csrf_token => $csrf, | 
|  | 616 | name => 'MyApp2', | 
|  | 617 | token => 'jhkhkjhk_hjgjsfz67i' | 
|  | 618 | }) | 
|  | 619 | ->status_is(200) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 620 | ->attr_is('form#revoke-token','action','/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token?_method=DELETE') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 621 | ->attr_is('form#revoke-token','method','POST') | 
|  | 622 | ->attr_is('form#revoke-token input[name=token]','value','jhkhkjhk_hjgjsfz67i') | 
| Akron | e997bb5 | 2021-06-11 16:44:06 +0200 | [diff] [blame] | 623 | ->text_is('a.button-abort', 'Abort') | 
|  | 624 | ->attr_is('#revoke-token input[type=submit]', 'value', 'Revoke') | 
|  | 625 | ->content_like(qr!Revoke a token for!) | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 626 | ; | 
|  | 627 |  | 
|  | 628 |  | 
|  | 629 | # CSRF missing | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 630 | $t->post_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token?_method=DELETE' => form => { | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 631 | name => 'MyApp2', | 
|  | 632 | token => 'jhkhkjhk_hjgjsfz67i' | 
|  | 633 | })->status_is(302) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 634 | ->header_is('Location','/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 635 | ; | 
|  | 636 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 637 | $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 638 | ->element_exists_not('div.notify-success') | 
|  | 639 | ->text_is('div.notify-error', 'Bad CSRF token') | 
|  | 640 | ; | 
|  | 641 |  | 
|  | 642 | # Token missing | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 643 | $t->post_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token?_method=DELETE' => form => { | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 644 | name => 'MyApp2', | 
|  | 645 | csrf_token => $csrf, | 
|  | 646 | })->status_is(302) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 647 | ->header_is('Location','/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 648 | ; | 
|  | 649 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 650 | $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 651 | ->element_exists_not('div.notify-success') | 
|  | 652 | ->text_is('div.notify-error', 'Some fields are invalid') | 
|  | 653 | ; | 
|  | 654 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 655 | $t->post_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==/token?_method=DELETE' => form => { | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 656 | name => 'MyApp2', | 
|  | 657 | csrf_token => $csrf, | 
|  | 658 | token => 'jhkhkjhk_hjgjsfz67i' | 
|  | 659 | })->status_is(302) | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 660 | ->header_is('Location','/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 661 | ; | 
|  | 662 |  | 
|  | 663 |  | 
| Akron | 041ca4d | 2021-06-10 11:52:51 +0200 | [diff] [blame] | 664 | $t->get_ok('/settings/oauth/fCBbQkA2NDA3MzM1Yw==') | 
| Akron | c1aaf93 | 2021-06-09 12:19:15 +0200 | [diff] [blame] | 665 | ->element_exists_not('div.notify-error') | 
|  | 666 | ->text_is('div.notify-success', 'Token was revoked successfully') | 
|  | 667 | ; | 
| Akron | 83209f7 | 2021-01-29 17:54:15 +0100 | [diff] [blame] | 668 |  | 
| Akron | 33f5c67 | 2019-06-24 19:40:47 +0200 | [diff] [blame] | 669 | done_testing; | 
|  | 670 | __END__ |