Code
Explorer
You are a developer and looking for Shopware projects?
Apply Now!
AuthController example
$repo
=
$this
->
getContainer
(
)
->
get
(
'customer.repository'
)
;
$repo
->
create
(
$data
, Context::
createDefaultContext
(
)
)
;
return
$repo
->
search
(
new
Criteria
(
[
$customerId
]
)
, Context::
createDefaultContext
(
)
)
->
first
(
)
;
}
private
function
getAuthController
(
?SendPasswordRecoveryMailRoute
$sendPasswordRecoveryMailRoute
= null
)
: AuthController
{
$sendPasswordRecoveryMailRoute
??=
$this
->
createMock
(
AbstractSendPasswordRecoveryMailRoute::
class
)
;
$controller
=
new
AuthController
(
$this
->
getContainer
(
)
->
get
(
AccountLoginPageLoader::
class
)
,
$sendPasswordRecoveryMailRoute
,
$this
->
getContainer
(
)
->
get
(
ResetPasswordRoute::
class
)
,
$this
->
getContainer
(
)
->
get
(
LoginRoute::
class
)
,
$this
->
createMock
(
AbstractLogoutRoute::
class
)
,
$this
->
getContainer
(
)
->
get
(
StorefrontCartFacade::
class
)
,
$this
->
getContainer
(
)
->
get
(
AccountRecoverPasswordPageLoader::
class
)
,
$this
->
getContainer
(
)
->
get
(
SalesChannelContextService::
class
)
)
;
$controller
->
setContainer
(
$this
->
getContainer
(
)
)
;
$controller
->
setTwig
(
$this
->
getContainer
(
)
->
get
(
'twig'
)
)
;
static
::
assertInstanceOf
(
Session::
class
,
$session
)
;
$session
->
getFlashBag
(
)
->
clear
(
)
;
$this
->translator =
$this
->
getContainer
(
)
->
get
(
'translator'
)
;
}
public
function
testGenerateAccountRecoveryRateLimit
(
)
: void
{
$passwordRecoveryMailRoute
=
$this
->
createMock
(
SendPasswordRecoveryMailRoute::
class
)
;
$passwordRecoveryMailRoute
->
method
(
'sendRecoveryMail'
)
->
willThrowException
(
new
RateLimitExceededException
(
time
(
)
+ 10
)
)
;
$controller
=
new
AuthController
(
$this
->
getContainer
(
)
->
get
(
AccountLoginPageLoader::
class
)
,
$passwordRecoveryMailRoute
,
$this
->
getContainer
(
)
->
get
(
ResetPasswordRoute::
class
)
,
$this
->
getContainer
(
)
->
get
(
LoginRoute::
class
)
,
$this
->
getContainer
(
)
->
get
(
LogoutRoute::
class
)
,
$this
->
getContainer
(
)
->
get
(
StorefrontCartFacade::
class
)
,
$this
->
getContainer
(
)
->
get
(
AccountRecoverPasswordPageLoader::
class
)
,
$this
->
getContainer
(
)
->
get
(
SalesChannelContextService::
class
)
)
;
$controller
->
setContainer
(
$this
->
getContainer
(
)
)
;