File: dispatch_on_scheme.t

package info (click to toggle)
libcatalyst-perl 5.90132-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,016 kB
  • sloc: perl: 11,061; makefile: 7
file content (123 lines) | stat: -rw-r--r-- 3,186 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
use warnings;
use strict;
use Test::More;
use HTTP::Request::Common;

# Test cases for dispatching on URI Scheme

{
  package MyApp::Controller::Root;
  $INC{'MyApp/Controller/Root.pm'} = __FILE__;

  use base 'Catalyst::Controller';

  sub is_http :Path(scheme) Scheme(http) Args(0) {
    my ($self, $c) = @_;
    Test::More::is $c->action->scheme, 'http';
    $c->response->body("is_http");
  }

  sub is_https :Path(scheme) Scheme(https) Args(0)  {
    my ($self, $c) = @_;
    Test::More::is $c->action->scheme, 'https';
    $c->response->body("is_https");
  }

  sub base :Chained('/') CaptureArgs(0) { }

    sub is_http_chain :GET Chained('base') PathPart(scheme) Scheme(http) Args(0) {
      my ($self, $c) = @_;
      Test::More::is $c->action->scheme, 'http';
      $c->response->body("base/is_http");
    }

    sub is_https_chain :Chained('base') PathPart(scheme) Scheme(https) Args(0) {
      my ($self, $c) = @_;
      Test::More::is $c->action->scheme, 'https';
      $c->response->body("base/is_https");
    }

    sub uri_for1 :Chained('base') Scheme(https) Args(0) {
      my ($self, $c) = @_;
      Test::More::is $c->action->scheme, 'https';
      $c->response->body($c->uri_for($c->action)->as_string);
    }

    sub uri_for2 :Chained('base') Scheme(https) Args(0) {
      my ($self, $c) = @_;
      Test::More::is $c->action->scheme, 'https';
      $c->response->body($c->uri_for($self->action_for('is_http'))->as_string);
    }

    sub uri_for3 :Chained('base') Scheme(http) Args(0) {
      my ($self, $c) = @_;
      Test::More::is $c->action->scheme, 'http';
      $c->response->body($c->uri_for($self->action_for('endpoint'))->as_string);
    }

  sub base2 :Chained('/') CaptureArgs(0) { }
    sub link :Chained(base2) Scheme(https) CaptureArgs(0) { }
      sub endpoint :Chained(link) Args(0) {
        my ($self, $c) = @_;
        Test::More::is $c->action->scheme, 'https';
        $c->response->body("end");
      }


  package MyApp;
  use Catalyst;

  Test::More::ok(MyApp->setup, 'setup app');
}

use Catalyst::Test 'MyApp';

{
  my $res = request "/root/scheme";
  is $res->code, 200, 'OK';
  is $res->content, 'is_http', 'correct body';
}

{
  my $res = request "https://localhost/root/scheme";
  is $res->code, 200, 'OK';
  is $res->content, 'is_https', 'correct body';
}

{
  my $res = request "/base/scheme";
  is $res->code, 200, 'OK';
  is $res->content, 'base/is_http', 'correct body';
}

{
  my $res = request "https://localhost/base/scheme";
  is $res->code, 200, 'OK';
  is $res->content, 'base/is_https', 'correct body';
}

{
  my $res = request "https://localhost/base/uri_for1";
  is $res->code, 200, 'OK';
  is $res->content, 'https://localhost/base/uri_for1', 'correct body';
}

{
  my $res = request "https://localhost/base/uri_for2";
  is $res->code, 200, 'OK';
  is $res->content, 'http://localhost/root/scheme', 'correct body';
}

{
  my $res = request "/base/uri_for3";
  is $res->code, 200, 'OK';
  is $res->content, 'https://localhost/base2/link/endpoint', 'correct body';
}

{
  my $res = request "https://localhost/base2/link/endpoint";
  is $res->code, 200, 'OK';
  is $res->content, 'end', 'correct body';
}

done_testing;