Skip to content
Snippets Groups Projects
Verified Commit 8d398794 authored by Damien's avatar Damien
Browse files

FEAT #9102 User preferences mode

parent fcb36a39
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ CREATE TABLE users
picture text,
enabled boolean DEFAULT TRUE,
mode character varying(50) NOT NULL,
preferences json NOT NULL DEFAULT '{"stylus" : false, "writingSize" : 1, "writingColor" : "#FFFFFF"}',
preferences json NOT NULL DEFAULT '{"writingMode" : "direct", "writingSize" : 1, "writingColor" : "#FFFFFF"}',
cookie_key character varying(255) DEFAULT NULL::character varying,
cookie_date timestamp without time zone,
password_modification_date timestamp without time zone DEFAULT CURRENT_TIMESTAMP,
......
......@@ -112,7 +112,7 @@ class UserController
}
$check = Validator::arrayType()->notEmpty()->validate($data['preferences']);
$check = $check && Validator::boolType()->validate($data['preferences']['stylus']);
$check = $check && Validator::stringType()->notEmpty()->validate($data['preferences']['writingMode']);
$check = $check && Validator::intType()->notEmpty()->validate($data['preferences']['writingSize']);
$check = $check && Validator::stringType()->notEmpty()->validate($data['preferences']['writingColor']);
if (!$check) {
......
......@@ -169,7 +169,7 @@ class UserControllerTest extends TestCase
'firstname' => 'Jolly',
'lastname' => 'Jumper',
'preferences' => [
'stylus' => true,
'writingMode' => 'stylus',
'writingSize' => 2,
'writingColor' => '#F1F1F1',
]
......@@ -187,7 +187,7 @@ class UserControllerTest extends TestCase
$this->assertSame('Jolly', $responseBody->user->firstname);
$this->assertSame('Jumper', $responseBody->user->lastname);
$this->assertSame(true, $responseBody->user->preferences->stylus);
$this->assertSame('stylus', $responseBody->user->preferences->writingMode);
$this->assertSame(2, $responseBody->user->preferences->writingSize);
$this->assertSame('#F1F1F1', $responseBody->user->preferences->writingColor);
......@@ -195,7 +195,7 @@ class UserControllerTest extends TestCase
'firstname' => 'Jenny',
'lastname' => 'JANE',
'preferences' => [
'stylus' => false,
'writingMode' => 'direct',
'writingSize' => 1,
'writingColor' => '#FFFFFF',
]
......@@ -213,6 +213,9 @@ class UserControllerTest extends TestCase
$this->assertSame('Jenny', $responseBody->user->firstname);
$this->assertSame('JANE', $responseBody->user->lastname);
$this->assertSame('direct', $responseBody->user->preferences->writingMode);
$this->assertSame(1, $responseBody->user->preferences->writingSize);
$this->assertSame('#FFFFFF', $responseBody->user->preferences->writingColor);
}
public function testCreateSignature()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment