Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bwinf
medal
Commits
2f82458c
Commit
2f82458c
authored
Jan 12, 2021
by
Robert Czechowski
Browse files
Add test for profile redirect for incomplete accounts
parent
d535ef8b
Pipeline
#963
passed with stages
in 16 minutes
Changes
3
Pipelines
1
Show whitespace changes
Inline
Side-by-side
src/main.rs
View file @
2f82458c
...
...
@@ -620,6 +620,15 @@ mod tests {
let
pos
=
content
.find
(
"<p>Login-Code: "
)
.expect
(
"Logincode not found"
);
let
logincode
=
&
content
[
pos
+
15
..
pos
+
24
];
let
pos
=
content
.find
(
"type=
\"
hidden
\"
name=
\"
csrf_token
\"
value=
\"
"
)
.expect
(
"CSRF-Token not found"
);
let
csrf
=
&
content
[
pos
+
39
..
pos
+
49
];
let
params
=
[(
"firstname"
,
"FirstName"
),
(
"lastname"
,
"LastName"
),
(
"grade"
,
"8"
),
(
"sex"
,
"2"
),
(
"csrf_token"
,
csrf
)];
let
resp
=
client
.post
(
"http://localhost:8084/profile"
)
.form
(
&
params
)
.send
()
.unwrap
();
assert_eq!
(
resp
.status
(),
StatusCode
::
FOUND
);
let
location
=
resp
.headers
()
.get
(
reqwest
::
header
::
LOCATION
)
.unwrap
()
.to_str
()
.unwrap
();
assert_eq!
(
location
,
"http://localhost:8084/profile?status=DataChanged"
);
// New client to test login code login
let
client
=
reqwest
::
Client
::
builder
()
.cookie_store
(
true
)
.redirect
(
reqwest
::
RedirectPolicy
::
none
())
...
...
@@ -635,6 +644,94 @@ mod tests {
let
mut
resp
=
client
.get
(
location
)
.send
()
.unwrap
();
let
content
=
resp
.text
()
.unwrap
();
assert
!
(
content
.contains
(
"Eingeloggt als <em></em>"
));
println!
(
"{}"
,
content
);
assert
!
(
content
.contains
(
"FirstName LastName"
));
})
}
#[test]
fn
check_group_creation_and_group_code_login_no_data
()
{
start_server_and_fn
(
8093
,
|
conn
|
{
addsimpleuser
(
conn
,
"testusr"
.to_string
(),
"testpw"
.to_string
(),
true
,
false
);
},
||
{
let
client
=
reqwest
::
Client
::
builder
()
.cookie_store
(
true
)
.redirect
(
reqwest
::
RedirectPolicy
::
none
())
.build
()
.unwrap
();
let
resp
=
login
(
8093
,
&
client
,
"testusr"
,
"testpw"
);
assert_eq!
(
resp
.status
(),
StatusCode
::
FOUND
);
let
mut
resp
=
client
.get
(
"http://localhost:8093"
)
.send
()
.unwrap
();
assert_eq!
(
resp
.status
(),
StatusCode
::
OK
);
let
content
=
resp
.text
()
.unwrap
();
assert
!
(
content
.contains
(
"[Lehrer]"
));
assert
!
(
content
.contains
(
"Gruppenverwaltung"
));
let
mut
resp
=
client
.get
(
"http://localhost:8093/group/"
)
.send
()
.unwrap
();
assert_eq!
(
resp
.status
(),
StatusCode
::
OK
);
let
content
=
resp
.text
()
.unwrap
();
assert
!
(
content
.contains
(
"Gruppe anlegen"
));
let
params
=
[(
"name"
,
"WrongGroupname"
),
(
"tag"
,
"WrongMarker"
),
(
"csrf_token"
,
"76CfTPJaoz"
)];
let
resp
=
client
.post
(
"http://localhost:8093/group/"
)
.form
(
&
params
)
.send
()
.unwrap
();
assert_eq!
(
resp
.status
(),
StatusCode
::
FORBIDDEN
);
let
pos
=
content
.find
(
"type=
\"
hidden
\"
name=
\"
csrf_token
\"
value=
\"
"
)
.expect
(
"CSRF-Token not found"
);
let
csrf
=
&
content
[
pos
+
39
..
pos
+
49
];
let
params
=
[(
"name"
,
"Groupname"
),
(
"tag"
,
"Marker"
),
(
"csrf_token"
,
csrf
)];
let
resp
=
client
.post
(
"http://localhost:8093/group/"
)
.form
(
&
params
)
.send
()
.unwrap
();
assert_eq!
(
resp
.status
(),
StatusCode
::
FOUND
);
let
mut
resp
=
client
.get
(
"http://localhost:8093/group/"
)
.send
()
.unwrap
();
let
content
=
resp
.text
()
.unwrap
();
assert
!
(
!
content
.contains
(
"WrongGroupname"
));
let
pos
=
content
.find
(
"<td><a href=
\"
/group/1
\"
>Groupname</a></td>"
)
.expect
(
"Group not found"
);
let
groupcode
=
&
content
[
pos
+
58
..
pos
+
65
];
// New client to test group code login
let
client
=
reqwest
::
Client
::
builder
()
.cookie_store
(
true
)
.redirect
(
reqwest
::
RedirectPolicy
::
none
())
.build
()
.unwrap
();
let
resp
=
login_code
(
8093
,
&
client
,
groupcode
);
assert_eq!
(
resp
.status
(),
StatusCode
::
FOUND
);
let
mut
set_cookie
=
resp
.headers
()
.get_all
(
"Set-Cookie"
)
.iter
();
assert
!
(
set_cookie
.next
()
.is_some
());
assert
!
(
set_cookie
.next
()
.is_none
());
let
location
=
resp
.headers
()
.get
(
reqwest
::
header
::
LOCATION
)
.unwrap
()
.to_str
()
.unwrap
();
assert_eq!
(
location
,
"http://localhost:8093/profile?status=firstlogin"
);
let
mut
resp
=
client
.get
(
location
)
.send
()
.unwrap
();
let
content
=
resp
.text
()
.unwrap
();
let
pos
=
content
.find
(
"<p>Login-Code: "
)
.expect
(
"Logincode not found"
);
let
logincode
=
&
content
[
pos
+
15
..
pos
+
24
];
// New client to test login code login
let
client
=
reqwest
::
Client
::
builder
()
.cookie_store
(
true
)
.redirect
(
reqwest
::
RedirectPolicy
::
none
())
.build
()
.unwrap
();
let
resp
=
login_code
(
8093
,
&
client
,
logincode
);
assert_eq!
(
resp
.status
(),
StatusCode
::
FOUND
);
let
location
=
resp
.headers
()
.get
(
reqwest
::
header
::
LOCATION
)
.unwrap
()
.to_str
()
.unwrap
();
assert_eq!
(
location
,
"http://localhost:8093/"
);
// Client is forwarded to login page?
let
resp
=
client
.get
(
"http://localhost:8093/"
)
.send
()
.unwrap
();
assert_eq!
(
resp
.status
(),
StatusCode
::
FOUND
);
let
location
=
resp
.headers
()
.get
(
reqwest
::
header
::
LOCATION
)
.unwrap
()
.to_str
()
.unwrap
();
assert_eq!
(
location
,
"http://localhost:8093/profile?status=firstlogin"
);
})
}
...
...
@@ -1019,6 +1116,7 @@ mod tests {
conn
.save_session
(
test_user
);
let
mut
test_user
=
conn
.new_session
(
""
);
test_user
.firstname
=
Some
(
"firstname"
.to_string
());
test_user
.lastname
=
Some
(
"teststdold"
.to_string
());
test_user
.logincode
=
Some
(
"logincode1"
.to_string
());
test_user
.managed_by
=
Some
(
1
);
// Fake id, should this group really exist?
...
...
@@ -1026,6 +1124,7 @@ mod tests {
conn
.save_session
(
test_user
);
let
mut
test_user
=
conn
.new_session
(
""
);
test_user
.firstname
=
Some
(
"firstname"
.to_string
());
test_user
.lastname
=
Some
(
"teststdnew"
.to_string
());
test_user
.logincode
=
Some
(
"logincode2"
.to_string
());
test_user
.managed_by
=
Some
(
1
);
...
...
templates/default/index.hbs
View file @
2f82458c
...
...
@@ -2,12 +2,7 @@
{{#if
logged_in
}}
Eingeloggt als
<em>
{{
username
}}
</em>
{{#if
firstname
}}
(
{{
firstname
}}
{{/if}}
{{#if
lastname
}}
{{
lastname
}}
)
{{/if}}
{{#if
firstname
}}{{
firstname
}}{{/if}}
{{#if
lastname
}}{{
lastname
}}{{/if}}
{{#if
teacher
}}
[Lehrer]
...
...
templates/jwinf/base.hbs
View file @
2f82458c
...
...
@@ -40,9 +40,7 @@
<div
class=
"columns"
style=
"margin-bottom: 0px;"
>
<div
class=
"column is-8"
>
Eingeloggt als
<em>
{{
username
}}
</em>
{{#if
firstname
}}{{#if
lastname
}}
{{
firstname
}}
{{
lastname
}}
{{/if}}{{/if}}
{{#if
firstname
}}{{
firstname
}}{{/if}}
{{#if
lastname
}}{{
lastname
}}{{/if}}
{{#if
admin
}}
[ADMIN]
{{else}}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment