source: sandbox/expresso-solr/expressoMail1_2/solrclient/tests/Solarium/ConfigurableTest.php @ 7588

Revision 7588, 4.5 KB checked in by adir, 11 years ago (diff)

Ticket #000 - Adicionando a integracao de buscas com Solr na base a ser isnerida na comunidade

Line 
1<?php
2/**
3 * Copyright 2011 Bas de Nooijer. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright notice,
9 *    this list of conditions and the following disclaimer.
10 *
11 * 2. Redistributions in binary form must reproduce the above copyright notice,
12 *    this listof conditions and the following disclaimer in the documentation
13 *    and/or other materials provided with the distribution.
14 *
15 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS"
16 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
19 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
20 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
21 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
22 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
23 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
24 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
25 * POSSIBILITY OF SUCH DAMAGE.
26 *
27 * The views and conclusions contained in the software and documentation are
28 * those of the authors and should not be interpreted as representing official
29 * policies, either expressed or implied, of the copyright holder.
30 */
31
32class Solarium_ConfigurableTest extends PHPUnit_Framework_TestCase
33{
34
35    public function testConstructorNoConfig()
36    {
37        $configTest = new ConfigTest;
38        $defaultOptions = array(
39            'option1' => 1,
40            'option2' => 'value 2',
41        );
42
43        $this->assertEquals($configTest->getOptions(), $defaultOptions);
44    }
45
46    public function testConstructorWithObject()
47    {
48        $configTest = new ConfigTest(new myConfigObject);
49
50        // the default options should be merged with the constructor values,
51        // overwriting any default values.
52        $expectedOptions = array(
53            'option1' => 1,
54            'option2' => 'newvalue2',
55            'option3' => 3,
56        );
57
58        $this->assertEquals($expectedOptions, $configTest->getOptions());
59    }
60
61    public function testConstructorWithArrayConfig()
62    {
63        $configTest = new ConfigTest(
64            array('option2' => 'newvalue2', 'option3' => 3)
65        );
66
67        // the default options should be merged with the constructor values,
68        // overwriting any default values.
69        $expectedOptions = array(
70            'option1' => 1,
71            'option2' => 'newvalue2',
72            'option3' => 3,
73        );
74
75        $this->assertEquals($expectedOptions, $configTest->getOptions());
76    }
77   
78    public function testConstructorWithInvalidConfig()
79    {
80        $this->setExpectedException('Solarium_Exception');
81        new Solarium_Client('invalid');
82    }
83
84    public function testGetOption()
85    {
86        $configTest = new ConfigTest;
87        $this->assertEquals(1, $configTest->getOption('option1'));
88    }
89
90    public function testGetOptionWIthInvalidName()
91    {
92        $configTest = new ConfigTest();
93        $this->assertEquals(null, $configTest->getOption('invalidoptionname'));
94    }
95
96    public function testInitialisation()
97    {
98        $this->setExpectedException('Solarium_Exception');
99        new ConfigTestInit;
100    }
101
102    public function testSetOptions()
103    {
104        $configTest = new ConfigTest();
105        $configTest->setOptions(array('option2' => 2, 'option3' => 3));
106
107        $this->assertEquals(
108            array('option1' => 1, 'option2' => 2, 'option3' => 3),
109            $configTest->getOptions()
110        );
111    }
112
113    public function testSetOptionsWithOverride()
114    {
115        $configTest = new ConfigTest();
116        $configTest->setOptions(array('option2' => 2, 'option3' => 3), true);
117
118        $this->assertEquals(
119            array('option2' => 2, 'option3' => 3),
120            $configTest->getOptions()
121        );
122    }
123}
124
125class ConfigTest extends Solarium_Configurable
126{
127
128    protected $_options = array(
129        'option1' => 1,
130        'option2' => 'value 2',
131    );
132
133}
134
135class ConfigTestInit extends ConfigTest
136{
137
138    protected function _init()
139    {
140        throw new Solarium_Exception('test init');
141    }
142
143}
144
145class myConfigObject
146{
147    public function toArray()
148    {
149        return array('option2' => 'newvalue2', 'option3' => 3);
150    }
151}
Note: See TracBrowser for help on using the repository browser.