Skip to content
This repository was archived by the owner on Mar 23, 2024. It is now read-only.

Commit 55d8213

Browse files
committed
🚿
1 parent 10162fb commit 55d8213

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

tests/Providers/OAuthAPITestAbstract.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ protected function initStorage(SettingsContainerInterface $options):OAuthStorage
7272
return new OAuthTestMemoryStorage($options, $this->CFG);
7373
}
7474

75-
protected function initHttp(SettingsContainerInterface $options, LoggerInterface $logger, array $responses):ClientInterface{
75+
protected function initHttp(SettingsContainerInterface $options, LoggerInterface $logger):ClientInterface{
7676
return new OAuthTestHttpClient($this->CFG, $logger);
7777
}
7878

tests/Providers/OAuthProviderTestAbstract.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ abstract class OAuthProviderTestAbstract extends TestCase{
3333
protected bool $is_ci;
3434

3535
// PSR interfaces
36-
protected ClientInterface $http;
37-
protected LoggerInterface $logger;
36+
protected ClientInterface $http;
37+
protected LoggerInterface $logger;
3838

3939
// OAuth related properties
4040
protected OAuthOptions|SettingsContainerInterface $options;
@@ -58,10 +58,10 @@ protected function setUp():void{
5858
// init provider
5959
$this->options = $this->initOptions();
6060
$this->storage = $this->initStorage($this->options);
61-
$this->http = $this->initHttp($this->options, $this->logger, $this::TEST_RESPONSES); // PSR-18 HTTP client
61+
$this->http = $this->initHttp($this->options, $this->logger); // PSR-18 HTTP client
6262
$this->provider = $this->initProvider($this->getProviderFQCN());
6363

64-
$this->initTestProperties($this::TEST_PROPERTIES);
64+
$this->initTestProperties();
6565
}
6666

6767
/**
@@ -97,8 +97,8 @@ protected function initStorage(SettingsContainerInterface $options):OAuthStorage
9797
return new MemoryStorage($options);
9898
}
9999

100-
protected function initHttp(SettingsContainerInterface $options, LoggerInterface $logger, array $responses):ClientInterface{
101-
return new ProviderTestHttpClient($logger, $responses);
100+
protected function initHttp(SettingsContainerInterface $options, LoggerInterface $logger):ClientInterface{
101+
return new ProviderTestHttpClient($logger, $this::TEST_RESPONSES);
102102
}
103103

104104
protected function initProvider(string $FQCN):OAuthInterface|OAuth1Interface|OAuth2Interface{
@@ -117,9 +117,9 @@ protected function initProvider(string $FQCN):OAuthInterface|OAuth1Interface|OAu
117117
return $this->reflection->newInstanceArgs($args);
118118
}
119119

120-
protected function initTestProperties(array $properties):void{
121-
foreach($properties as $property => $value){
122-
$this->reflection->getProperty($property)->setValue($this->provider, $value);
120+
protected function initTestProperties():void{
121+
foreach($this::TEST_PROPERTIES as $property => $value){
122+
$this->setReflectionProperty($property, $value);
123123
}
124124
}
125125

0 commit comments

Comments
 (0)