]> git.agnieray.net Git - galette.git/blob - tests/Galette/Core/tests/units/Preferences.php
Try to initialize db content on first load
[galette.git] / tests / Galette / Core / tests / units / Preferences.php
1 <?php
2
3 /* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
4
5 /**
6 * Preferences tests
7 *
8 * PHP version 5
9 *
10 * Copyright © 2013 The Galette Team
11 *
12 * This file is part of Galette (http://galette.tuxfamily.org).
13 *
14 * Galette is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * Galette is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with Galette. If not, see <http://www.gnu.org/licenses/>.
26 *
27 * @category Core
28 * @package GaletteTests
29 *
30 * @author Johan Cwiklinski <johan@x-tnd.be>
31 * @copyright 2013 The Galette Team
32 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
33 * @version SVN: $Id$
34 * @link http://galette.tuxfamily.org
35 * @since 2013-10-19
36 */
37
38 namespace Galette\Core\test\units;
39
40 use \atoum;
41
42 /**
43 * Preferences tests class
44 *
45 * @category Core
46 * @name Preferences
47 * @package GaletteTests
48 * @author Johan Cwiklinski <johan@x-tnd.be>
49 * @copyright 2013 The Galette Team
50 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL License 3.0 or (at your option) any later version
51 * @link http://galette.tuxfamily.org
52 * @since 2013-01-13
53 */
54 class Preferences extends atoum
55 {
56 private $_preferences = null;
57 private $_zdb;
58
59 /**
60 * Set up tests
61 *
62 * @param string $testMethod Calling method
63 *
64 * @return void
65 */
66 public function beforeTestMethod($testMethod)
67 {
68 $this->_zdb = new \Galette\Core\Db();
69 $this->_preferences = new \Galette\Core\Preferences(
70 $this->_zdb
71 );
72 }
73
74 /**
75 * Test preferences initialization
76 *
77 * @return void
78 */
79 public function testInstallInit()
80 {
81 $result = $this->_preferences->installInit(
82 'en_US',
83 'da_admin',
84 password_hash('da_secret', PASSWORD_BCRYPT)
85 );
86 $this->boolean($result)->isTrue();
87
88 //new object with values loaded from database to compare
89 $prefs = new \Galette\Core\Preferences($this->_zdb);
90
91 foreach ( $prefs->getDefaults() as $key=>$expected ) {
92 $value = $prefs->$key;
93
94 switch ( $key ) {
95 case 'pref_admin_login':
96 $this->variable($value)->isIdenticalTo('da_admin');
97 break;
98 case 'pref_admin_pass':
99 $pw_checked = password_verify('da_secret', $value);
100 $this->boolean($pw_checked)->isTrue();
101 break;
102 case 'pref_lang':
103 $this->variable($value)->isIdenticalTo('en_US');
104 break;
105 case 'pref_card_year':
106 $this->variable($value)->isIdenticalTo(date('Y'));
107 break;
108 default:
109 $this->variable($value)->isEqualTo($expected);
110 break;
111 }
112 }
113
114 //tru to set and get a non existent value
115 $prefs->doesnotexists = 'that *does* not exists.';
116 $false_result = $prefs->doesnotexists;
117 $this->boolean($false_result)->isFalse();
118
119 //change slogan
120 $slogan = 'One Galette to rule them all';
121 $prefs->pref_slogan = $slogan;
122 $check = $prefs->pref_slogan;
123 $this->string($check)->isIdenticalTo($slogan);
124
125 //change password
126 $new_pass = 'anoth3er_s3cr3t';
127 $prefs->pref_admin_pass = $new_pass;
128 $pass = $prefs->pref_admin_pass;
129 $pw_checked = password_verify($new_pass, $pass);
130 $this->boolean($pw_checked)->isTrue();
131
132 $this->_preferences->pref_nom = 'Galette';
133 $this->_preferences->pref_ville = 'Avignon';
134 $this->_preferences->pref_cp = '84000';
135 $this->_preferences->pref_adresse = 'Palais des Papes';
136 $this->_preferences->pref_adresse2 = 'Au milieu';
137 $this->_preferences->pref_pays = 'France';
138
139 $expected = "Galette\n\nPalais des Papes\nAu milieu\n84000 Avignon - France";
140 $address = $this->_preferences->getPostalAdress();
141
142 $this->variable($address)->isIdenticalTo($expected);
143 }
144
145 /**
146 * Test storage
147 *
148 * @return void
149 */
150 public function testPrefsStorage()
151 {
152 $slogan = $this->_preferences->pref_slogan;
153 $this->variable($slogan)->isEqualTo('');
154
155 $slogan = 'One Galette to rule them all';
156 $this->_preferences->pref_slogan = $slogan;
157 $result = $this->_preferences->store();
158
159 $this->boolean($result)->isTrue();
160
161 $prefs = new \Galette\Core\Preferences($this->_zdb);
162 $check_slogan = $prefs->pref_slogan;
163 $this->variable($check_slogan)->isEqualTo($slogan);
164 }
165
166 /**
167 * Test fields names
168 *
169 * @return void
170 */
171 public function testFieldsNames()
172 {
173 $this->_preferences->load();
174 $fields_names = $this->_preferences->getFieldsNames();
175 $expected = array_keys($this->_preferences->getDefaults());
176
177 sort($fields_names);
178 sort($expected);
179
180 $this->array($fields_names)->isIdenticalTo($expected);
181 }
182
183 /**
184 * Test preferences updating when some are missing
185 *
186 * @return void
187 */
188 public function testUpdate()
189 {
190 $remove = array(
191 'pref_facebook',
192 'pref_viadeo'
193 );
194
195 $del = $this->_zdb->db->delete(
196 PREFIX_DB . \Galette\Core\Preferences::TABLE,
197 \Galette\Core\Preferences::PK . ' IN ("' . implode('", "', $remove) . '")'
198 );
199
200 $this->_preferences->load();
201 $fb = $this->_preferences->pref_facebook;
202 $viadeo = $this->_preferences->pref_viadeo;
203
204 $this->boolean($fb)->isFalse();
205 $this->boolean($viadeo)->isFalse();
206
207 $prefs = new \Galette\Core\Preferences($this->_zdb);
208 $fb = $prefs->pref_facebook;
209 $viadeo = $prefs->pref_viadeo;
210
211 $this->variable($fb)->isIdenticalTo('');
212 $this->variable($viadeo)->isIdenticalTo('');
213 }
214 }