Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MetaGer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
open-source
MetaGer
Commits
fcde77d4
Commit
fcde77d4
authored
2 years ago
by
Dominik Hebeler
Browse files
Options
Downloads
Patches
Plain Diff
fixed kontakt test
parent
e8a824d9
No related branches found
Branches containing commit
No related tags found
2 merge requests
!2010
Development
,
!2001
Resolve "Improve Localization"
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
metager/tests/Browser/Pages/Kontakt.php
+11
-12
11 additions, 12 deletions
metager/tests/Browser/Pages/Kontakt.php
metager/tests/Browser/StaticPagesTest.php
+2
-2
2 additions, 2 deletions
metager/tests/Browser/StaticPagesTest.php
with
13 additions
and
14 deletions
metager/tests/Browser/Pages/Kontakt.php
+
11
−
12
View file @
fcde77d4
...
...
@@ -3,6 +3,8 @@
namespace
Tests\Browser\Pages
;
use
Laravel\Dusk\Browser
;
use
Laravel\Dusk\Page
;
use
LaravelLocalization
;
class
Kontakt
extends
Page
{
...
...
@@ -11,9 +13,9 @@ class Kontakt extends Page
*
* @return string
*/
public
function
url
()
public
function
url
(
$locale
=
null
)
{
return
'
/kontakt
'
;
return
LaravelLocalization
::
getLocalizedUrl
(
$locale
,
"
/kontakt
"
)
;
}
/**
...
...
@@ -24,17 +26,14 @@ class Kontakt extends Page
*/
public
function
assert
(
Browser
$browser
)
{
$browser
->
assertPathIs
(
$this
->
url
())
->
waitForText
(
"Sicheres Kontaktformular"
)
->
assertTitle
(
"Kontakt - MetaGer"
)
->
switchLanguage
(
"English"
)
->
waitForText
(
"Secure Contact Form"
)
->
assertTitle
(
"Contact - MetaGer"
)
->
switchLanguage
(
"Español"
)
->
waitForText
(
"Formulario de contacto seguro"
)
->
assertTitle
(
"Contacto - MetaGer"
)
->
switchLanguage
(
"Deutsch"
);
foreach
(
LaravelLocalization
::
getSupportedLocales
()
as
$locale
=>
$locale_data
)
{
$url
=
$this
->
url
(
$locale
);
$lang
=
\preg_replace
(
"/^([a-zA-Z]+)-.*/"
,
"$1"
,
$locale
);
$browser
->
visit
(
$url
)
->
waitForText
(
trans
(
"kontakt.form.1"
,
[],
$lang
))
->
assertTitle
(
trans
(
"titles.kontakt"
,
[],
$lang
));
}
}
/**
...
...
This diff is collapsed.
Click to expand it.
metager/tests/Browser/StaticPagesTest.php
+
2
−
2
View file @
fcde77d4
...
...
@@ -92,7 +92,7 @@ class StaticPagesTest extends DuskTestCase
->
on
(
new
Impress
);
});
}
/*
public
function
testKontakt
()
{
// Kontakt
...
...
@@ -106,7 +106,7 @@ class StaticPagesTest extends DuskTestCase
->
on
(
new
Kontakt
);
});
}
/*
public function testPlugin()
{
// Plugin
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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