Compare commits
No commits in common. "7d4388e05cc768ccf206f0daa4d6ccf31bb60c91" and "fef9383dd2d39c0d2a3e3c74d7634487904b6dd5" have entirely different histories.
7d4388e05c
...
fef9383dd2
4 changed files with 10 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -11,5 +11,3 @@
|
||||||
/teapot_socialbox/logs/
|
/teapot_socialbox/logs/
|
||||||
/tests/docker/coffee/data/
|
/tests/docker/coffee/data/
|
||||||
/tests/docker/teapot/data/
|
/tests/docker/teapot/data/
|
||||||
/tests/docker/teapot/logs/
|
|
||||||
/tests/docker/coffee/logs/
|
|
||||||
|
|
|
@ -24,7 +24,6 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ./tests/docker/coffee/config:/etc/config
|
- ./tests/docker/coffee/config:/etc/config
|
||||||
- ./tests/docker/coffee/data:/etc/socialbox
|
- ./tests/docker/coffee/data:/etc/socialbox
|
||||||
- ./tests/docker/coffee/logs:/var/log
|
|
||||||
environment:
|
environment:
|
||||||
# No need to change these values
|
# No need to change these values
|
||||||
LOG_LEVEL: ${LOG_LEVEL:-debug}
|
LOG_LEVEL: ${LOG_LEVEL:-debug}
|
||||||
|
@ -126,7 +125,6 @@ services:
|
||||||
volumes:
|
volumes:
|
||||||
- ./tests/docker/teapot/config:/etc/config
|
- ./tests/docker/teapot/config:/etc/config
|
||||||
- ./tests/docker/teapot/data:/etc/socialbox
|
- ./tests/docker/teapot/data:/etc/socialbox
|
||||||
- ./tests/docker/teapot/logs:/var/log
|
|
||||||
environment:
|
environment:
|
||||||
# No need to change these values
|
# No need to change these values
|
||||||
LOG_LEVEL: ${LOG_LEVEL:-debug}
|
LOG_LEVEL: ${LOG_LEVEL:-debug}
|
||||||
|
|
|
@ -481,7 +481,7 @@
|
||||||
publicKey: $this->serverPublicSigningKey,
|
publicKey: $this->serverPublicSigningKey,
|
||||||
))
|
))
|
||||||
{
|
{
|
||||||
throw new RpcException('The response signature cannot be verified with the server\'s public signing key');
|
throw new RpcException('Failed to verify the response signature');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch (CryptographyException $e)
|
catch (CryptographyException $e)
|
||||||
|
|
9
tests/Socialbox/SocialClientSessionTest.php
Normal file
9
tests/Socialbox/SocialClientSessionTest.php
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Socialbox;
|
||||||
|
|
||||||
|
use PHPUnit\Framework\TestCase;
|
||||||
|
|
||||||
|
class SocialClientSessionTest extends TestCase
|
||||||
|
{
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue