This is the codeAbility Sharing Platform! Learn more about the
codeAbility Sharing Platform
.
Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
codeAbility Sharing Platform
Manage
Activity
Members
Labels
Plan
Issues
43
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
development
sharing
codeAbility Sharing Platform
Commits
9ab58ff0
Commit
9ab58ff0
authored
2 years ago
by
Eduard Frankford
Browse files
Options
Downloads
Patches
Plain Diff
testing
parent
397ae4bb
5 merge requests
!132
Bringing July Release to production
,
!128
Fixing #315 and #319
,
!126
Continous Deployment with E2E Tests
,
!125
Publish docker image
,
!119
Publish docker image
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+1
-1
1 addition, 1 deletion
.gitlab-ci.yml
src/main/webapp/index.html
+10
-8
10 additions, 8 deletions
src/main/webapp/index.html
src/test/javascript/e2e/account/account.spec.ts
+3
-22
3 additions, 22 deletions
src/test/javascript/e2e/account/account.spec.ts
with
14 additions
and
31 deletions
.gitlab-ci.yml
+
1
−
1
View file @
9ab58ff0
...
...
@@ -104,7 +104,7 @@ frontend-test:
e2e-test
:
services
:
-
selenium/standalone-chrome
image
:
ubuntu:20.04
image
:
node
stage
:
e2e
cache
:
{}
dependencies
:
...
...
This diff is collapsed.
Click to expand it.
src/main/webapp/index.html
+
10
−
8
View file @
9ab58ff0
...
...
@@ -113,15 +113,17 @@
</noscript>
<script
type=
"text/javascript"
>
// show an error message if the app loading takes more than 4 sec
window
.
onload
=
function
()
{
setTimeout
(
showError
,
4000
);
};
function
showError
()
{
var
errorElm
=
document
.
getElementById
(
'
jhipster-error
'
);
if
(
errorElm
&&
errorElm
.
style
)
{
errorElm
.
style
.
display
=
'
block
'
;
this
.
ngZone
.
runOutsideAngular
(()
=>
{
window
.
onload
=
function
()
{
setTimeout
(
showError
,
4000
);
};
function
showError
()
{
var
errorElm
=
document
.
getElementById
(
'
jhipster-error
'
);
if
(
errorElm
&&
errorElm
.
style
)
{
errorElm
.
style
.
display
=
'
block
'
;
}
}
}
}
);
</script>
</body>
</html>
This diff is collapsed.
Click to expand it.
src/test/javascript/e2e/account/account.spec.ts
+
3
−
22
View file @
9ab58ff0
...
...
@@ -13,9 +13,7 @@ describe('account', () => {
let
settingsPage
:
SettingsPage
;
before
(
async
()
=>
{
browser
.
waitForAngularEnabled
(
true
);
await
browser
.
get
(
'
/
'
);
browser
.
waitForAngularEnabled
(
false
);
await
browser
.
sleep
(
2000
);
// browser.ignoreSynchronization = true;
...
...
@@ -25,24 +23,18 @@ describe('account', () => {
it
(
'
should fail to login with bad password
'
,
async
()
=>
{
signInPage
=
await
navBarPage
.
getSignInPage
();
await
signInPage
.
autoSignInUsing
(
username
,
'
foo
'
);
await
browser
.
sleep
(
2000
);
const
expect2
=
'
login.messages.error.authentication
'
;
const
value2
=
await
element
(
by
.
css
(
'
.alert-danger
'
)).
getAttribute
(
'
jhiTranslate
'
);
console
.
log
(
expect2
);
console
.
log
(
value2
);
await
browser
.
sleep
(
2000
);
expect
(
value2
).
to
.
eq
(
expect2
);
});
it
(
'
should login successfully with admin account
'
,
async
()
=>
{
browser
.
waitForAngularEnabled
(
true
);
await
browser
.
get
(
'
/
'
);
browser
.
waitForAngularEnabled
(
false
);
signInPage
=
await
navBarPage
.
getSignInPage
();
await
signInPage
.
autoSignInUsing
(
username
,
password
);
await
browser
.
sleep
(
2000
);
const
expect2
=
'
home.logged.message
'
;
await
browser
.
wait
(
ec
.
visibilityOf
(
element
(
by
.
id
(
'
home-logged-message
'
))));
...
...
@@ -53,14 +45,12 @@ describe('account', () => {
it
(
'
should be able to update settings
'
,
async
()
=>
{
await
navBarPage
.
clickOnAccountMenu
();
settingsPage
=
await
navBarPage
.
getSettingsPage
();
await
browser
.
sleep
(
2000
);
const
expect1
=
'
settings.title
'
;
const
value1
=
await
settingsPage
.
getTitle
();
expect
(
value1
).
to
.
eq
(
expect1
);
await
settingsPage
.
save
();
await
browser
.
sleep
(
500
);
await
browser
.
sleep
(
2000
);
const
expect2
=
'
settings.messages.success
'
;
const
alert
=
element
(
by
.
css
(
'
.alert-success
'
));
const
value2
=
await
alert
.
getAttribute
(
'
jhiTranslate
'
);
...
...
@@ -69,15 +59,13 @@ describe('account', () => {
it
(
'
should fail to update password when using incorrect current password
'
,
async
()
=>
{
passwordPage
=
await
navBarPage
.
getPasswordPage
();
await
browser
.
sleep
(
2000
);
expect
(
await
passwordPage
.
getTitle
()).
to
.
eq
(
'
password.title
'
);
await
passwordPage
.
setCurrentPassword
(
'
wrong_current_password
'
);
await
passwordPage
.
setPassword
(
'
new_password
'
);
await
passwordPage
.
setConfirmPassword
(
'
new_password
'
);
await
passwordPage
.
save
();
await
browser
.
sleep
(
2
000
);
await
browser
.
sleep
(
1
000
);
const
expect2
=
'
password.messages.error
'
;
const
alert
=
element
(
by
.
css
(
'
.alert-danger
'
));
...
...
@@ -88,25 +76,22 @@ describe('account', () => {
it
(
'
should be able to update password
'
,
async
()
=>
{
passwordPage
=
await
navBarPage
.
getPasswordPage
();
await
browser
.
sleep
(
2000
);
expect
(
await
passwordPage
.
getTitle
()).
to
.
eq
(
'
password.title
'
);
await
passwordPage
.
setCurrentPassword
(
password
);
await
passwordPage
.
setPassword
(
'
newpassword
'
);
await
passwordPage
.
setConfirmPassword
(
'
newpassword
'
);
await
passwordPage
.
save
();
await
browser
.
sleep
(
2
000
);
await
browser
.
sleep
(
1
000
);
const
successMsg
=
'
password.messages.success
'
;
const
alert
=
element
(
by
.
css
(
'
.alert-success
'
));
const
alertValue
=
await
alert
.
getAttribute
(
'
jhiTranslate
'
);
expect
(
alertValue
).
to
.
eq
(
successMsg
);
await
navBarPage
.
autoSignOut
();
await
browser
.
sleep
(
2000
);
signInPage
=
await
navBarPage
.
getSignInPage
();
await
signInPage
.
autoSignInUsing
(
username
,
'
newpassword
'
);
await
browser
.
sleep
(
2000
);
// change back to default
await
navBarPage
.
clickOnPasswordMenu
();
...
...
@@ -115,7 +100,7 @@ describe('account', () => {
await
passwordPage
.
setPassword
(
password
);
await
passwordPage
.
setConfirmPassword
(
password
);
await
passwordPage
.
save
();
await
browser
.
sleep
(
2
000
);
await
browser
.
sleep
(
1
000
);
// wait for success message
const
alertValue2
=
await
alert
.
getAttribute
(
'
jhiTranslate
'
);
...
...
@@ -124,9 +109,7 @@ describe('account', () => {
it
(
'
should navigate to 404 not found error page on non existing route and show user own navbar if valid authentication exists
'
,
async
()
=>
{
// don't sign out and refresh page with non existing route
browser
.
waitForAngularEnabled
(
true
);
await
browser
.
get
(
'
/this-is-link-to-non-existing-page
'
);
browser
.
waitForAngularEnabled
(
false
);
// should navigate to 404 not found page
const
url
=
await
browser
.
getCurrentUrl
();
expect
(
url
).
to
.
endWith
(
'
404
'
);
...
...
@@ -136,8 +119,6 @@ describe('account', () => {
});
after
(
async
()
=>
{
browser
.
waitForAngularEnabled
(
true
);
await
navBarPage
.
autoSignOut
();
browser
.
waitForAngularEnabled
(
false
);
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment