We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -6,30 +6,30 @@ discard block |
||
| 6 | 6 | |
| 7 | 7 | class Record |
| 8 | 8 | { |
| 9 | - public int $account_id = 1; |
|
| 10 | - public string $login = "login"; |
|
| 11 | - public string $password = "password"; |
|
| 12 | - public string $email = "email"; |
|
| 13 | - public string $last_login = "last login"; |
|
| 14 | - public string $validation_code = "validation code"; |
|
| 15 | - public string $offset = "offset"; |
|
| 16 | - public string $images = "images"; |
|
| 17 | - public string $fontsize = "font size"; |
|
| 18 | - public string $password_reset = "password reset"; |
|
| 19 | - public int $mail_banned = 0; |
|
| 20 | - public string $friendly_colour = "colour"; |
|
| 21 | - public string $neutral_colour = "colour"; |
|
| 22 | - public string $enemy_colour = "colour"; |
|
| 23 | - public string $css_link = "css link"; |
|
| 24 | - public string $referral_id = 'referral_id'; |
|
| 25 | - public string $max_rank_achieved = 'max_rank_achieved'; |
|
| 26 | - public string $hof_name = 'hof_name'; |
|
| 27 | - public string $discord_id = 'discord_id'; |
|
| 28 | - public string $irc_nick = 'irc_nick'; |
|
| 29 | - public string $date_short = 'date_short'; |
|
| 30 | - public string $time_short = 'time_short'; |
|
| 31 | - public string $template = 'template'; |
|
| 32 | - public string $colour_scheme = 'colour_scheme'; |
|
| 9 | + public int $account_id = 1; |
|
| 10 | + public string $login = "login"; |
|
| 11 | + public string $password = "password"; |
|
| 12 | + public string $email = "email"; |
|
| 13 | + public string $last_login = "last login"; |
|
| 14 | + public string $validation_code = "validation code"; |
|
| 15 | + public string $offset = "offset"; |
|
| 16 | + public string $images = "images"; |
|
| 17 | + public string $fontsize = "font size"; |
|
| 18 | + public string $password_reset = "password reset"; |
|
| 19 | + public int $mail_banned = 0; |
|
| 20 | + public string $friendly_colour = "colour"; |
|
| 21 | + public string $neutral_colour = "colour"; |
|
| 22 | + public string $enemy_colour = "colour"; |
|
| 23 | + public string $css_link = "css link"; |
|
| 24 | + public string $referral_id = 'referral_id'; |
|
| 25 | + public string $max_rank_achieved = 'max_rank_achieved'; |
|
| 26 | + public string $hof_name = 'hof_name'; |
|
| 27 | + public string $discord_id = 'discord_id'; |
|
| 28 | + public string $irc_nick = 'irc_nick'; |
|
| 29 | + public string $date_short = 'date_short'; |
|
| 30 | + public string $time_short = 'time_short'; |
|
| 31 | + public string $template = 'template'; |
|
| 32 | + public string $colour_scheme = 'colour_scheme'; |
|
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | /** |
@@ -39,44 +39,44 @@ discard block |
||
| 39 | 39 | */ |
| 40 | 40 | class AbstractSmrAccountTest extends TestCase |
| 41 | 41 | { |
| 42 | - private AbstractSmrAccount $abstractSmrAccount; |
|
| 42 | + private AbstractSmrAccount $abstractSmrAccount; |
|
| 43 | 43 | |
| 44 | - public function testGetAccountByAccountId() |
|
| 45 | - { |
|
| 46 | - //# Given the database has been set up with a user |
|
| 47 | - $record = new Record(); |
|
| 48 | - self::setupMockMysqlDatabase($record); |
|
| 49 | - //# And there is no force update |
|
| 50 | - $forceUpdate = false; |
|
| 51 | - //# When the account is retrieved by its ID |
|
| 52 | - $this->abstractSmrAccount = AbstractSmrAccount::getAccount("some id", $forceUpdate); |
|
| 53 | - //# Then the integrity of the user is correct |
|
| 54 | - $this->assertEquals($record->email, $this->abstractSmrAccount->getEmail()); |
|
| 55 | - } |
|
| 44 | + public function testGetAccountByAccountId() |
|
| 45 | + { |
|
| 46 | + //# Given the database has been set up with a user |
|
| 47 | + $record = new Record(); |
|
| 48 | + self::setupMockMysqlDatabase($record); |
|
| 49 | + //# And there is no force update |
|
| 50 | + $forceUpdate = false; |
|
| 51 | + //# When the account is retrieved by its ID |
|
| 52 | + $this->abstractSmrAccount = AbstractSmrAccount::getAccount("some id", $forceUpdate); |
|
| 53 | + //# Then the integrity of the user is correct |
|
| 54 | + $this->assertEquals($record->email, $this->abstractSmrAccount->getEmail()); |
|
| 55 | + } |
|
| 56 | 56 | |
| 57 | - private static function setupMockMysqlDatabase(Record $record): MockInterface |
|
| 58 | - { |
|
| 59 | - //# Force the mock to be used in the autoloader |
|
| 60 | - $mysqlDatabase = m::mock("overload:SmrMySqlDatabase"); |
|
| 61 | - $mysqlDatabase |
|
| 62 | - ->shouldReceive("escapeNumber"); |
|
| 63 | - $mysqlDatabase |
|
| 64 | - ->shouldReceive("query"); |
|
| 65 | - $mysqlDatabase |
|
| 66 | - ->shouldReceive("nextRecord") |
|
| 67 | - ->andReturn("a record"); |
|
| 68 | - $mysqlDatabase |
|
| 69 | - ->shouldReceive("getRow") |
|
| 70 | - ->andReturn((array)$record); |
|
| 71 | - $mysqlDatabase |
|
| 72 | - ->shouldReceive("getBoolean") |
|
| 73 | - ->andReturn(false); |
|
| 74 | - $mysqlDatabase |
|
| 75 | - ->shouldReceive("getObject") |
|
| 76 | - ->andReturn(array()); |
|
| 77 | - $mysqlDatabase |
|
| 78 | - ->shouldReceive("asdasd") |
|
| 79 | - ->andReturn(array()); |
|
| 80 | - return $mysqlDatabase; |
|
| 81 | - } |
|
| 57 | + private static function setupMockMysqlDatabase(Record $record): MockInterface |
|
| 58 | + { |
|
| 59 | + //# Force the mock to be used in the autoloader |
|
| 60 | + $mysqlDatabase = m::mock("overload:SmrMySqlDatabase"); |
|
| 61 | + $mysqlDatabase |
|
| 62 | + ->shouldReceive("escapeNumber"); |
|
| 63 | + $mysqlDatabase |
|
| 64 | + ->shouldReceive("query"); |
|
| 65 | + $mysqlDatabase |
|
| 66 | + ->shouldReceive("nextRecord") |
|
| 67 | + ->andReturn("a record"); |
|
| 68 | + $mysqlDatabase |
|
| 69 | + ->shouldReceive("getRow") |
|
| 70 | + ->andReturn((array)$record); |
|
| 71 | + $mysqlDatabase |
|
| 72 | + ->shouldReceive("getBoolean") |
|
| 73 | + ->andReturn(false); |
|
| 74 | + $mysqlDatabase |
|
| 75 | + ->shouldReceive("getObject") |
|
| 76 | + ->andReturn(array()); |
|
| 77 | + $mysqlDatabase |
|
| 78 | + ->shouldReceive("asdasd") |
|
| 79 | + ->andReturn(array()); |
|
| 80 | + return $mysqlDatabase; |
|
| 81 | + } |
|
| 82 | 82 | } |