Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Sign in
Toggle navigation
S
solarium
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
common
solarium
Commits
36440380
Commit
36440380
authored
May 14, 2011
by
Bas de Nooijer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- unittest improvements
parent
4af9b5d1
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
286 additions
and
2 deletions
+286
-2
tests/Solarium/Result/QueryTypeTest.php
tests/Solarium/Result/QueryTypeTest.php
+19
-2
tests/Solarium/Result/Select/FacetSetTest.php
tests/Solarium/Result/Select/FacetSetTest.php
+89
-0
tests/Solarium/Result/Select/Highlighting/ResultTest.php
tests/Solarium/Result/Select/Highlighting/ResultTest.php
+89
-0
tests/Solarium/Result/Select/HighlightingTest.php
tests/Solarium/Result/Select/HighlightingTest.php
+89
-0
No files found.
tests/Solarium/Result/QueryTypeTest.php
View file @
36440380
...
@@ -45,10 +45,19 @@ class Solarium_Result_QueryTypeTest extends PHPUnit_Framework_TestCase
...
@@ -45,10 +45,19 @@ class Solarium_Result_QueryTypeTest extends PHPUnit_Framework_TestCase
}
}
public
function
testParseResponse
()
public
function
testParseResponse
()
{
$client
=
new
Solarium_Client
;
$query
=
new
Solarium_Query_DummyTest
;
$response
=
new
Solarium_Client_Response
(
'{"responseHeader":{"status":1,"QTime":12}}'
,
array
(
'HTTP 1.1 200 OK'
));
$result
=
new
Solarium_Result_QueryTypeDummy
(
$client
,
$query
,
$response
);
$this
->
setExpectedException
(
'Solarium_Exception'
);
$result
->
parse
();
}
public
function
testParseResponseInvalidQuerytype
()
{
{
$this
->
_result
->
parse
();
$this
->
_result
->
parse
();
$this
->
assertEquals
(
12
,
$this
->
_result
->
getVar
(
'queryTime'
));
$this
->
assertEquals
(
1
,
$this
->
_result
->
getVar
(
'status'
));
}
}
public
function
testParseLazyLoading
()
public
function
testParseLazyLoading
()
...
@@ -71,6 +80,14 @@ class Solarium_Result_QueryTypeTest extends PHPUnit_Framework_TestCase
...
@@ -71,6 +80,14 @@ class Solarium_Result_QueryTypeTest extends PHPUnit_Framework_TestCase
}
}
class
Solarium_Query_DummyTest
extends
Solarium_Query_Select
{
public
function
getType
()
{
return
'dummy'
;
}
}
class
Solarium_Result_QueryTypeDummy
extends
Solarium_Result_QueryType
class
Solarium_Result_QueryTypeDummy
extends
Solarium_Result_QueryType
{
{
...
...
tests/Solarium/Result/Select/FacetSetTest.php
0 → 100644
View file @
36440380
<?php
/**
* Copyright 2011 Bas de Nooijer. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this listof conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*/
class
Solarium_Result_Select_FacetSetTest
extends
PHPUnit_Framework_TestCase
{
/**
* @var Solarium_Result_Select_FacetSet
*/
protected
$_result
;
protected
$_facets
;
public
function
setUp
()
{
$this
->
_facets
=
array
(
'facet1'
=>
'content1'
,
'facet2'
=>
'content2'
,
);
$this
->
_result
=
new
Solarium_Result_Select_FacetSet
(
$this
->
_facets
);
}
public
function
testGetFacets
()
{
$this
->
assertEquals
(
$this
->
_facets
,
$this
->
_result
->
getFacets
());
}
public
function
testGetFacet
()
{
$this
->
assertEquals
(
$this
->
_facets
[
'facet2'
],
$this
->
_result
->
getFacet
(
'facet2'
)
);
}
public
function
testGetInvalidFacet
()
{
$this
->
assertEquals
(
null
,
$this
->
_result
->
getFacet
(
'invalid'
)
);
}
public
function
testIterator
()
{
$items
=
array
();
foreach
(
$this
->
_result
AS
$key
=>
$item
)
{
$items
[
$key
]
=
$item
;
}
$this
->
assertEquals
(
$this
->
_facets
,
$items
);
}
public
function
testCount
()
{
$this
->
assertEquals
(
count
(
$this
->
_facets
),
count
(
$this
->
_result
));
}
}
tests/Solarium/Result/Select/Highlighting/ResultTest.php
0 → 100644
View file @
36440380
<?php
/**
* Copyright 2011 Bas de Nooijer. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this listof conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*/
class
Solarium_Result_Select_Highlighting_ResultTest
extends
PHPUnit_Framework_TestCase
{
/**
* @var Solarium_Result_Select_Highlighting_Result
*/
protected
$_result
;
protected
$_fields
;
public
function
setUp
()
{
$this
->
_fields
=
array
(
'field1'
=>
'content1'
,
'field2'
=>
'content2'
,
);
$this
->
_result
=
new
Solarium_Result_Select_Highlighting_Result
(
$this
->
_fields
);
}
public
function
testGetFields
()
{
$this
->
assertEquals
(
$this
->
_fields
,
$this
->
_result
->
getFields
());
}
public
function
testGetField
()
{
$this
->
assertEquals
(
$this
->
_fields
[
'field2'
],
$this
->
_result
->
getField
(
'field2'
)
);
}
public
function
testGetInvalidField
()
{
$this
->
assertEquals
(
array
(),
$this
->
_result
->
getField
(
'invalid'
)
);
}
public
function
testIterator
()
{
$items
=
array
();
foreach
(
$this
->
_result
AS
$key
=>
$item
)
{
$items
[
$key
]
=
$item
;
}
$this
->
assertEquals
(
$this
->
_fields
,
$items
);
}
public
function
testCount
()
{
$this
->
assertEquals
(
count
(
$this
->
_fields
),
count
(
$this
->
_result
));
}
}
tests/Solarium/Result/Select/HighlightingTest.php
0 → 100644
View file @
36440380
<?php
/**
* Copyright 2011 Bas de Nooijer. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this listof conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* The views and conclusions contained in the software and documentation are
* those of the authors and should not be interpreted as representing official
* policies, either expressed or implied, of the copyright holder.
*/
class
Solarium_Result_Select_HighlightingTest
extends
PHPUnit_Framework_TestCase
{
/**
* @var Solarium_Result_Select_Highlighting
*/
protected
$_result
;
protected
$_items
;
public
function
setUp
()
{
$this
->
_items
=
array
(
'key1'
=>
'content1'
,
'key2'
=>
'content2'
,
);
$this
->
_result
=
new
Solarium_Result_Select_Highlighting
(
$this
->
_items
);
}
public
function
testGetResults
()
{
$this
->
assertEquals
(
$this
->
_items
,
$this
->
_result
->
getResults
());
}
public
function
testGetResult
()
{
$this
->
assertEquals
(
$this
->
_items
[
'key2'
],
$this
->
_result
->
getResult
(
'key2'
)
);
}
public
function
testGetInvalidResult
()
{
$this
->
assertEquals
(
null
,
$this
->
_result
->
getResult
(
'invalid'
)
);
}
public
function
testIterator
()
{
$items
=
array
();
foreach
(
$this
->
_result
AS
$key
=>
$item
)
{
$items
[
$key
]
=
$item
;
}
$this
->
assertEquals
(
$this
->
_items
,
$items
);
}
public
function
testCount
()
{
$this
->
assertEquals
(
count
(
$this
->
_items
),
count
(
$this
->
_result
));
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment