Completed
Push — dev2 ( 5942a1...f58c0c )
by Gordon
12:33
created
src/SilverStripe/Elastica/ElasticaSearchHelperInterface.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,7 +4,7 @@  discard block
 block discarded – undo
4 4
 	/**
5 5
 	 * Alter the query or add to it, perhaps for example adding aggregation
6 6
 	 * @param  Elastic\Query &$query query object from Elastica
7
-	 * @return [type]         [description]
7
+	 * @return void         [description]
8 8
 	 */
9 9
 	public function augmentQuery(&$query);
10 10
 
@@ -12,6 +12,7 @@  discard block
 block discarded – undo
12 12
 	 * Update filters, perhaps remaps them, prior to performing a search.
13 13
 	 * This allows for aggregation values to be updated prior to rendering.
14 14
 	 * @param  array &$filters array of key/value pairs for query filtering
15
+	 * @return void
15 16
 	 */
16 17
 	public function updateFilters(&$filters);
17 18
 
@@ -19,7 +20,7 @@  discard block
 block discarded – undo
19 20
 	 * Manipulate the array of aggregations post search butprior to rendering
20 21
 	 * them in a template.
21 22
 	 * @param  [type] &$aggs [description]
22
-	 * @return [type]        [description]
23
+	 * @return void        [description]
23 24
 	 */
24 25
 	public function updateAggregation(&$aggs);
25 26
 
Please login to merge, or discard this patch.
src/SilverStripe/Elastica/ResultList.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -250,6 +250,9 @@
 block discarded – undo
250 250
 	}
251 251
 
252 252
 
253
+	/**
254
+	 * @return integer
255
+	 */
253 256
 	public function getTotalItems() {
254 257
 		$this->getResults();
255 258
 		return $this->TotalItems;
Please login to merge, or discard this patch.
tests/AggregationUnitTest.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -1036,6 +1036,7 @@
 block discarded – undo
1036 1036
 	/**
1037 1037
 	 * Test searching
1038 1038
 	 * http://stackoverflow.com/questions/28305250/elasticsearch-customize-score-for-synonyms-stemming
1039
+	 * @param string $queryText
1039 1040
 	 */
1040 1041
 	private function search($queryText,$fields = array('Title' => 1, 'Description' => 1),
1041 1042
 		$filters = array()) {
Please login to merge, or discard this patch.
Spacing   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@  discard block
 block discarded – undo
33 33
 		$aggregations = $resultList->getAggregations();
34 34
 
35 35
 		error_log('AGGS');
36
-		foreach ($aggregations as $agg) {
36
+		foreach($aggregations as $agg) {
37 37
 			error_log($agg->Name);
38
-			foreach ($agg->Buckets as $bucket) {
38
+			foreach($agg->Buckets as $bucket) {
39 39
 				error_log("\t$bucket->Key -> $bucket->DocumentCount");
40 40
 			}
41 41
 		}
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
 		$resultList = $this->search('');
430 430
 
431 431
 		//assert there are actually some results
432
-		$this->assertGreaterThan(0,$resultList->getTotalItems());
432
+		$this->assertGreaterThan(0, $resultList->getTotalItems());
433 433
 		$aggregations = $resultList->getAggregations()->toArray();
434 434
 
435 435
 		/*
@@ -448,49 +448,49 @@  discard block
 block discarded – undo
448 448
 		//Asserting aggregate of ISO, 64 has count 5
449 449
 		$this->assertEquals("64", $buckets[0]->Key);
450 450
 		$this->assertEquals(5, $buckets[0]->DocumentCount);
451
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',64)->count(),5);
451
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 64)->count(), 5);
452 452
 		$bucketSum += $buckets[0]->DocumentCount;
453 453
 
454 454
 		//Asserting aggregate of ISO, 100 has count 11
455 455
 		$this->assertEquals("100", $buckets[1]->Key);
456 456
 		$this->assertEquals(11, $buckets[1]->DocumentCount);
457
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',100)->count(),11);
457
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 100)->count(), 11);
458 458
 		$bucketSum += $buckets[1]->DocumentCount;
459 459
 
460 460
 		//Asserting aggregate of ISO, 200 has count 12
461 461
 		$this->assertEquals("200", $buckets[2]->Key);
462 462
 		$this->assertEquals(12, $buckets[2]->DocumentCount);
463
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',200)->count(),12);
463
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 200)->count(), 12);
464 464
 		$bucketSum += $buckets[2]->DocumentCount;
465 465
 
466 466
 		//Asserting aggregate of ISO, 400 has count 13
467 467
 		$this->assertEquals("400", $buckets[3]->Key);
468 468
 		$this->assertEquals(13, $buckets[3]->DocumentCount);
469
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',400)->count(),13);
469
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 400)->count(), 13);
470 470
 		$bucketSum += $buckets[3]->DocumentCount;
471 471
 
472 472
 		//Asserting aggregate of ISO, 800 has count 16
473 473
 		$this->assertEquals("800", $buckets[4]->Key);
474 474
 		$this->assertEquals(16, $buckets[4]->DocumentCount);
475
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',800)->count(),16);
475
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 800)->count(), 16);
476 476
 		$bucketSum += $buckets[4]->DocumentCount;
477 477
 
478 478
 		//Asserting aggregate of ISO, 1600 has count 13
479 479
 		$this->assertEquals("1600", $buckets[5]->Key);
480 480
 		$this->assertEquals(13, $buckets[5]->DocumentCount);
481
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',1600)->count(),13);
481
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 1600)->count(), 13);
482 482
 		$bucketSum += $buckets[5]->DocumentCount;
483 483
 
484 484
 		//Asserting aggregate of ISO, 2000 has count 11
485 485
 		$this->assertEquals("2000", $buckets[6]->Key);
486 486
 		$this->assertEquals(11, $buckets[6]->DocumentCount);
487
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',2000)->count(),11);
487
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 2000)->count(), 11);
488 488
 		$bucketSum += $buckets[6]->DocumentCount;
489 489
 
490 490
 		//Asserting aggregate of ISO, 3200 has count 19
491 491
 		$this->assertEquals("3200", $buckets[7]->Key);
492 492
 		$this->assertEquals(19, $buckets[7]->DocumentCount);
493
-		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO',3200)->count(),19);
493
+		$this->assertEquals(FlickrPhotoTO::get()->filter('ISO', 3200)->count(), 19);
494 494
 		$bucketSum += $buckets[7]->DocumentCount;
495 495
 		$this->assertEquals(100, $bucketSum);
496 496
 
@@ -503,43 +503,43 @@  discard block
 block discarded – undo
503 503
 		//Asserting aggregate of Focal Length, 24 has count 12
504 504
 		$this->assertEquals("24", $buckets[0]->Key);
505 505
 		$this->assertEquals(12, $buckets[0]->DocumentCount);
506
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',24)->count(),12);
506
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 24)->count(), 12);
507 507
 		$bucketSum += $buckets[0]->DocumentCount;
508 508
 
509 509
 		//Asserting aggregate of Focal Length, 50 has count 11
510 510
 		$this->assertEquals("50", $buckets[1]->Key);
511 511
 		$this->assertEquals(11, $buckets[1]->DocumentCount);
512
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',50)->count(),11);
512
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 50)->count(), 11);
513 513
 		$bucketSum += $buckets[1]->DocumentCount;
514 514
 
515 515
 		//Asserting aggregate of Focal Length, 80 has count 11
516 516
 		$this->assertEquals("80", $buckets[2]->Key);
517 517
 		$this->assertEquals(11, $buckets[2]->DocumentCount);
518
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',80)->count(),11);
518
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 80)->count(), 11);
519 519
 		$bucketSum += $buckets[2]->DocumentCount;
520 520
 
521 521
 		//Asserting aggregate of Focal Length, 90 has count 20
522 522
 		$this->assertEquals("90", $buckets[3]->Key);
523 523
 		$this->assertEquals(20, $buckets[3]->DocumentCount);
524
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',90)->count(),20);
524
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 90)->count(), 20);
525 525
 		$bucketSum += $buckets[3]->DocumentCount;
526 526
 
527 527
 		//Asserting aggregate of Focal Length, 120 has count 12
528 528
 		$this->assertEquals("120", $buckets[4]->Key);
529 529
 		$this->assertEquals(12, $buckets[4]->DocumentCount);
530
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',120)->count(),12);
530
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 120)->count(), 12);
531 531
 		$bucketSum += $buckets[4]->DocumentCount;
532 532
 
533 533
 		//Asserting aggregate of Focal Length, 150 has count 17
534 534
 		$this->assertEquals("150", $buckets[5]->Key);
535 535
 		$this->assertEquals(17, $buckets[5]->DocumentCount);
536
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',150)->count(),17);
536
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 150)->count(), 17);
537 537
 		$bucketSum += $buckets[5]->DocumentCount;
538 538
 
539 539
 		//Asserting aggregate of Focal Length, 200 has count 17
540 540
 		$this->assertEquals("200", $buckets[6]->Key);
541 541
 		$this->assertEquals(17, $buckets[6]->DocumentCount);
542
-		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm',200)->count(),17);
542
+		$this->assertEquals(FlickrPhotoTO::get()->filter('FocalLength35mm', 200)->count(), 17);
543 543
 		$bucketSum += $buckets[6]->DocumentCount;
544 544
 		$this->assertEquals(100, $bucketSum);
545 545
 
@@ -827,7 +827,7 @@  discard block
 block discarded – undo
827 827
 		$originalAggregations = $resultList->getAggregations()->toArray();
828 828
 
829 829
 		$filters = array('ISO' => 3200);
830
-		$resultListFiltered = $this->search('New Zealand', $fields,$filters);
830
+		$resultListFiltered = $this->search('New Zealand', $fields, $filters);
831 831
 		$filteredAggregations = $resultListFiltered->getAggregations()->toArray();
832 832
 
833 833
 		$this->checkDrillingDownHasHappened($filteredAggregations, $originalAggregations);
@@ -839,8 +839,8 @@  discard block
 block discarded – undo
839 839
 		$resultList = $this->search('New Zealand', $fields, array('ISO' => 400));
840 840
 		$originalAggregations = $resultList->getAggregations()->toArray();
841 841
 
842
-		$filters = array('ISO' => 400, 'Aspect' => 'Vertical' );
843
-		$resultListFiltered = $this->search('New Zealand', $fields,$filters);
842
+		$filters = array('ISO' => 400, 'Aspect' => 'Vertical');
843
+		$resultListFiltered = $this->search('New Zealand', $fields, $filters);
844 844
 		$filteredAggregations = $resultListFiltered->getAggregations()->toArray();
845 845
 
846 846
 		$this->checkDrillingDownHasHappened($filteredAggregations, $originalAggregations);
@@ -855,8 +855,8 @@  discard block
 block discarded – undo
855 855
 										'Aspect' => 'Vertical'));
856 856
 		$originalAggregations = $resultList->getAggregations()->toArray();
857 857
 
858
-		$filters = array('ISO' => 400, 'Aspect' => 'Vertical', 'Aperture' => 5 );
859
-		$resultListFiltered = $this->search('New Zealand', $fields,$filters);
858
+		$filters = array('ISO' => 400, 'Aspect' => 'Vertical', 'Aperture' => 5);
859
+		$resultListFiltered = $this->search('New Zealand', $fields, $filters);
860 860
 		$filteredAggregations = $resultListFiltered->getAggregations()->toArray();
861 861
 
862 862
 		$this->checkDrillingDownHasHappened($filteredAggregations, $originalAggregations);
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
 	private function checkDrillingDownHasHappened($filteredAggregations, $originalAggregations) {
897 897
 		$aggCtr = 0;
898 898
 
899
-		foreach ($filteredAggregations as $filteredAgg) {
899
+		foreach($filteredAggregations as $filteredAgg) {
900 900
 			$origAgg = $originalAggregations[$aggCtr];
901 901
 			$bucketCtr = 0;
902 902
 			$origBuckets = $origAgg->Buckets->toArray();
@@ -905,17 +905,17 @@  discard block
 block discarded – undo
905 905
 			$origCounts = array();
906 906
 			$filteredCounts = array();
907 907
 
908
-			foreach ($origBuckets as $bucket) {
908
+			foreach($origBuckets as $bucket) {
909 909
 				$origCounts[$bucket->Key] = $bucket->DocumentCount;
910 910
 			}
911 911
 
912
-			foreach ($filteredBuckets as $bucket) {
912
+			foreach($filteredBuckets as $bucket) {
913 913
 				$filteredCounts[$bucket->Key] = $bucket->DocumentCount;
914 914
 			}
915 915
 
916 916
 			$akf = array_keys($filteredCounts);
917 917
 
918
-			foreach ($akf as $aggregateKey) {
918
+			foreach($akf as $aggregateKey) {
919 919
 				$this->assertGreaterThanOrEqual(
920 920
 					$filteredCounts[$aggregateKey], $origCounts[$aggregateKey]
921 921
 				);
@@ -951,8 +951,8 @@  discard block
 block discarded – undo
951 951
 		$es->setQueryResultManipulator('FlickrPhotoTOElasticaSearchHelper');
952 952
 
953 953
 		//Add filters
954
-		foreach ($filters as $key => $value) {
955
-			$es->addFilter($key,$value);
954
+		foreach($filters as $key => $value) {
955
+			$es->addFilter($key, $value);
956 956
 		}
957 957
 
958 958
 		$es->showResultsForEmptySearch();
@@ -971,7 +971,7 @@  discard block
 block discarded – undo
971 971
 	 * Test searching
972 972
 	 * http://stackoverflow.com/questions/28305250/elasticsearch-customize-score-for-synonyms-stemming
973 973
 	 */
974
-	private function search($queryText,$fields = array('Title' => 1, 'Description' => 1),
974
+	private function search($queryText, $fields = array('Title' => 1, 'Description' => 1),
975 975
 		$filters = array()) {
976 976
 		$es = new ElasticSearcher();
977 977
 		$es->setStart(0);
@@ -980,9 +980,9 @@  discard block
 block discarded – undo
980 980
 		$es->setQueryResultManipulator('FlickrPhotoTOElasticaSearchHelper');
981 981
 
982 982
 		//Add filters
983
-		foreach ($filters as $key => $value) {
983
+		foreach($filters as $key => $value) {
984 984
 			error_log("ADDING FILTER RESULT $key, $value");
985
-			$es->addFilter($key,$value);
985
+			$es->addFilter($key, $value);
986 986
 		}
987 987
 
988 988
 		$es->showResultsForEmptySearch();
Please login to merge, or discard this patch.
tests/ElasticaUtilTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -153,6 +153,9 @@
 block discarded – undo
153 153
 
154 154
 	/**
155 155
 	 * Simulate a call to Elastica to get suggestions for a given phrase
156
+	 * @param string $phrase
157
+	 * @param string $suggestion
158
+	 * @param string $highlightedSuggestion
156 159
 	 * @return [type] [description]
157 160
 	 */
158 161
 	private function getSuggestionArray($phrase, $suggestion, $highlightedSuggestion) {
Please login to merge, or discard this patch.
tests/ElasticsearchFunctionalTestBase.php 2 patches
Doc Comments   +14 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
 	 * Note:   characters are stripped from the content; make sure that your assertions take this into account.
103 103
 	 *
104 104
 	 * @param string $selector A basic CSS selector, e.g. 'li.jobs h3'
105
-	 * @param array|string $expectedMatches The content of at least one of the matched tags
105
+	 * @param integer $index
106 106
 	 * @throws PHPUnit_Framework_AssertionFailedError
107 107
 	 * @return boolean
108 108
 	 */
@@ -133,6 +133,12 @@  discard block
 block discarded – undo
133 133
 	/*
134 134
 	Check all the nodes matching the selector for attribute name = expected value
135 135
 	 */
136
+
137
+	/**
138
+	 * @param string $selector
139
+	 * @param string $attributeName
140
+	 * @param string $expectedValue
141
+	 */
136 142
 	public function assertAttributeHasExactValue($selector, $attributeName, $expectedValue) {
137 143
 		$items = $this->cssParser()->getBySelector($selector);
138 144
 		foreach ($items as $item) {
@@ -141,6 +147,9 @@  discard block
 block discarded – undo
141 147
 	}
142 148
 
143 149
 
150
+	/**
151
+	 * @param string $selector
152
+	 */
144 153
 	public function assertAttributesHaveExactValues($selector, $expectedValues) {
145 154
 		$attributeNames = array_keys($expectedValues);
146 155
 		$items = $this->cssParser()->getBySelector($selector);
@@ -154,6 +163,10 @@  discard block
 block discarded – undo
154 163
 	}
155 164
 
156 165
 
166
+	/**
167
+	 * @param string $selector
168
+	 * @param integer $expectedAmount
169
+	 */
157 170
 	public function assertNumberOfNodes($selector, $expectedAmount) {
158 171
 		$items = $this->cssParser()->getBySelector($selector);
159 172
 		foreach ($items as $item) {
Please login to merge, or discard this patch.
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -8,8 +8,8 @@  discard block
 block discarded – undo
8 8
 	public static $ignoreFixtureFileFor = array();
9 9
 
10 10
 	protected $extraDataObjects = array(
11
-		'SearchableTestPage','FlickrPhotoTO','FlickrAuthorTO','FlickrSetTO','FlickrTagTO',
12
-		'SearchableTestFatherPage','SearchableTestGrandFatherPage'
11
+		'SearchableTestPage', 'FlickrPhotoTO', 'FlickrAuthorTO', 'FlickrSetTO', 'FlickrTagTO',
12
+		'SearchableTestFatherPage', 'SearchableTestGrandFatherPage'
13 13
 	);
14 14
 
15 15
 
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 	public function setUp() {
26 26
 
27
-		echo "*************** TEST: ".$this->getName();
27
+		echo "*************** TEST: " . $this->getName();
28 28
 
29 29
 		$cache = SS_Cache::factory('elasticsearch');
30 30
 		$cache->clean(Zend_Cache::CLEANING_MODE_ALL);
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
 		// this needs to be called in order to create the list of searchable
34 34
 		// classes and fields that are available.  Simulates part of a build
35
-		$classes = array('SearchableTestPage','SiteTree','Page','FlickrPhotoTO','FlickrSetTO',
35
+		$classes = array('SearchableTestPage', 'SiteTree', 'Page', 'FlickrPhotoTO', 'FlickrSetTO',
36 36
 			'FlickrTagTO', 'FlickrAuthorTO');
37 37
 		$this->requireDefaultRecordsFrom = $classes;
38 38
 
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 		$this->service->setTestMode(true);
49 49
 
50 50
 		// A previous test may have deleted the index and then failed, so check for this
51
-		if (!$this->service->getIndex()->exists()) {
51
+		if(!$this->service->getIndex()->exists()) {
52 52
 			$this->service->getIndex()->create();
53 53
 		}
54 54
 		$this->service->reset();
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
 
60 60
 		$orig_fixture_file = static::$fixture_file;
61 61
 
62
-		foreach (static::$ignoreFixtureFileFor as $testPattern) {
63
-			$pattern = '/'.$testPattern.'/';
64
-			if (preg_match($pattern, $this->getName())) {
62
+		foreach(static::$ignoreFixtureFileFor as $testPattern) {
63
+			$pattern = '/' . $testPattern . '/';
64
+			if(preg_match($pattern, $this->getName())) {
65 65
 				static::$fixture_file = null;
66 66
 			}
67 67
 		}
@@ -83,11 +83,11 @@  discard block
 block discarded – undo
83 83
 
84 84
 
85 85
 	private function publishSiteTree() {
86
-		foreach (SiteTree::get()->getIterator() as $page) {
86
+		foreach(SiteTree::get()->getIterator() as $page) {
87 87
 			// temporarily disable Elasticsearch indexing, it will be done in a batch
88 88
 			$page->IndexingOff = true;
89 89
 
90
-			$page->publish('Stage','Live');
90
+			$page->publish('Stage', 'Live');
91 91
 		}
92 92
 	}
93 93
 
@@ -108,7 +108,7 @@  discard block
 block discarded – undo
108 108
 		$items = $this->cssParser()->getBySelector($selector);
109 109
 
110 110
 		$ctr = 0;
111
-		foreach ($items as $item) {
111
+		foreach($items as $item) {
112 112
 			$text = strip_tags($item);
113 113
 			$escaped = str_replace("'", "\'", $text);
114 114
 			$ctr++;
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
 	 */
131 131
 	public function assertAttributeHasExactValue($selector, $attributeName, $expectedValue) {
132 132
 		$items = $this->cssParser()->getBySelector($selector);
133
-		foreach ($items as $item) {
133
+		foreach($items as $item) {
134 134
 			$this->assertEquals($expectedValue, $item['value']);
135 135
 		}
136 136
 	}
@@ -139,9 +139,9 @@  discard block
 block discarded – undo
139 139
 	public function assertAttributesHaveExactValues($selector, $expectedValues) {
140 140
 		$attributeNames = array_keys($expectedValues);
141 141
 		$items = $this->cssParser()->getBySelector($selector);
142
-		foreach ($items as $item) {
142
+		foreach($items as $item) {
143 143
 			$actualValues = array();
144
-			foreach ($attributeNames as $attributeName) {
144
+			foreach($attributeNames as $attributeName) {
145 145
 				$actualValues[$attributeName] = (string)$item[$attributeName];
146 146
 			}
147 147
 			$this->assertEquals($expectedValues, $actualValues);
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
 
152 152
 	public function assertNumberOfNodes($selector, $expectedAmount) {
153 153
 		$items = $this->cssParser()->getBySelector($selector);
154
-		foreach ($items as $item) {
154
+		foreach($items as $item) {
155 155
 			$text = strip_tags($item);
156 156
 		}
157 157
 
@@ -164,9 +164,9 @@  discard block
 block discarded – undo
164 164
 	public function collateSearchResults() {
165 165
 		$items = $this->cssParser()->getBySelector('div.searchResults .searchResult');
166 166
 		$result = array();
167
-		foreach ($items as $item) {
167
+		foreach($items as $item) {
168 168
 			$attr = $item->attributes()->id;
169
-			array_push($result, $attr."");
169
+			array_push($result, $attr . "");
170 170
 		}
171 171
 
172 172
 		return $result;
Please login to merge, or discard this patch.
tests/ElasticSearchPage_Validator_Test.php 2 patches
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -106,6 +106,10 @@
 block discarded – undo
106 106
 	}
107 107
 
108 108
 
109
+	/**
110
+	 * @param string $fieldName
111
+	 * @param string $message
112
+	 */
109 113
 	private function checkForError($fieldName, $badValue, $message) {
110 114
 		$this->ElasticSearchPage->$fieldName = $badValue;
111 115
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -131,8 +131,8 @@
 block discarded – undo
131 131
 		$errors = Session::get("FormInfo.{$form->FormName()}.errors");
132 132
 		$found = false;
133 133
 
134
-		foreach ($errors as $error) {
135
-			if ($error['message'] == $message && $error['fieldName'] == $fieldName) {
134
+		foreach($errors as $error) {
135
+			if($error['message'] == $message && $error['fieldName'] == $fieldName) {
136 136
 				$found = true;
137 137
 				break;
138 138
 			}
Please login to merge, or discard this patch.
tests/ElasticsearchTestBase.php 3 patches
Doc Comments   +11 added lines patch added patch discarded remove patch
@@ -132,6 +132,10 @@  discard block
 block discarded – undo
132 132
 	}
133 133
 
134 134
 
135
+	/**
136
+	 * @param integer $depth
137
+	 * @param string $parentKey
138
+	 */
135 139
 	private function recurseArrayAssertion($toAssert, $depth, $parentKey) {
136 140
 		$prefix = str_repeat("\t",$depth);
137 141
 		echo "\t{$prefix}'$parentKey' => array(\n";
@@ -160,6 +164,10 @@  discard block
 block discarded – undo
160 164
 	/*
161 165
 	Helper methods for testing CMS fields
162 166
 	 */
167
+
168
+	/**
169
+	 * @param string $tabName
170
+	 */
163 171
 	public function checkTabExists($fields, $tabName) {
164 172
 		echo "Searching for tab $tabName\n";
165 173
 		$tab = $fields->findOrMakeTab("Root.{$tabName}");
@@ -184,6 +192,9 @@  discard block
 block discarded – undo
184 192
 	}
185 193
 
186 194
 
195
+	/**
196
+	 * @param string $fieldName
197
+	 */
187 198
 	public function checkFieldExists($tab,$fieldName) {
188 199
 		$fields = $tab->Fields();
189 200
 		echo "TAB:{$tab->Name}\n";
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -208,11 +208,11 @@
 block discarded – undo
208 208
 	 */
209 209
 	public function invokeMethod(&$object, $methodName, array $parameters = array())
210 210
 	{
211
-	    $reflection = new \ReflectionClass(get_class($object));
212
-	    $method = $reflection->getMethod($methodName);
213
-	    $method->setAccessible(true);
211
+		$reflection = new \ReflectionClass(get_class($object));
212
+		$method = $reflection->getMethod($methodName);
213
+		$method->setAccessible(true);
214 214
 
215
-	    return $method->invokeArgs($object, $parameters);
215
+		return $method->invokeArgs($object, $parameters);
216 216
 	}
217 217
 
218 218
 
Please login to merge, or discard this patch.
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -9,8 +9,8 @@  discard block
 block discarded – undo
9 9
 	public static $ignoreFixtureFileFor = array();
10 10
 
11 11
 	protected $extraDataObjects = array(
12
-		'SearchableTestPage','FlickrPhotoTO','FlickrAuthorTO','FlickrSetTO','FlickrTagTO',
13
-		'SearchableTestFatherPage','SearchableTestGrandFatherPage','AutoCompleteOption'
12
+		'SearchableTestPage', 'FlickrPhotoTO', 'FlickrAuthorTO', 'FlickrSetTO', 'FlickrTagTO',
13
+		'SearchableTestFatherPage', 'SearchableTestGrandFatherPage', 'AutoCompleteOption'
14 14
 	);
15 15
 
16 16
 
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
 		// this needs to be called in order to create the list of searchable
41 41
 		// classes and fields that are available.  Simulates part of a build
42
-		$classes = array('SearchableTestPage','SiteTree','Page','FlickrPhotoTO','FlickrSetTO',
42
+		$classes = array('SearchableTestPage', 'SiteTree', 'Page', 'FlickrPhotoTO', 'FlickrSetTO',
43 43
 			'FlickrTagTO', 'FlickrAuthorTO');
44 44
 		$this->requireDefaultRecordsFrom = $classes;
45 45
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 		$this->service->setTestMode(true);
50 50
 
51 51
 		// A previous test may have deleted the index and then failed, so check for this
52
-		if (!$this->service->getIndex()->exists()) {
52
+		if(!$this->service->getIndex()->exists()) {
53 53
 			$this->service->getIndex()->create();
54 54
 		}
55 55
 		$this->service->reset();
@@ -60,9 +60,9 @@  discard block
 block discarded – undo
60 60
 
61 61
 		$orig_fixture_file = static::$fixture_file;
62 62
 
63
-		foreach (static::$ignoreFixtureFileFor as $testPattern) {
64
-			$pattern = '/'.$testPattern.'/';
65
-			if (preg_match($pattern, $this->getName())) {
63
+		foreach(static::$ignoreFixtureFileFor as $testPattern) {
64
+			$pattern = '/' . $testPattern . '/';
65
+			if(preg_match($pattern, $this->getName())) {
66 66
 				static::$fixture_file = null;
67 67
 			}
68 68
 		}
@@ -91,55 +91,55 @@  discard block
 block discarded – undo
91 91
 
92 92
 
93 93
 	private function publishSiteTree() {
94
-		foreach (SiteTree::get()->getIterator() as $page) {
94
+		foreach(SiteTree::get()->getIterator() as $page) {
95 95
 			// temporarily disable Elasticsearch indexing, it will be done in a batch
96 96
 			$page->IndexingOff = true;
97
-			$page->publish('Stage','Live');
97
+			$page->publish('Stage', 'Live');
98 98
 		}
99 99
 	}
100 100
 
101 101
 
102 102
 	public function generateAssertionsFromArray($toAssert) {
103
-		echo '$expected = array('."\n";
104
-		foreach ($toAssert as $key => $value) {
103
+		echo '$expected = array(' . "\n";
104
+		foreach($toAssert as $key => $value) {
105 105
 			$escValue = str_replace("'", '\\\'', $value);
106 106
 			echo "'$key' => '$escValue',\n";
107 107
 		}
108 108
 		echo ");\n";
109
-		echo '$this->assertEquals($expected, $somevar);'."\n";
109
+		echo '$this->assertEquals($expected, $somevar);' . "\n";
110 110
 	}
111 111
 
112 112
 
113 113
 	public function generateAssertionsFromArray1D($toAssert) {
114
-		echo '$expected = array('."\n";
115
-		foreach ($toAssert as $key => $value) {
114
+		echo '$expected = array(' . "\n";
115
+		foreach($toAssert as $key => $value) {
116 116
 			$escValue = str_replace("'", '\\\'', $value);
117 117
 			echo "'$escValue',";
118 118
 		}
119 119
 		echo ");\n";
120
-		echo '$this->assertEquals($expected, $somevar);'."\n";
120
+		echo '$this->assertEquals($expected, $somevar);' . "\n";
121 121
 	}
122 122
 
123 123
 
124 124
 	public function generateAssertionsFromArrayRecurse($toAssert) {
125 125
 		echo '$expected = ';
126
-			$this->recurseArrayAssertion($toAssert,1, 'FIXME');
127
-		echo '$this->assertEquals($expected, $somevar);'."\n";
126
+			$this->recurseArrayAssertion($toAssert, 1, 'FIXME');
127
+		echo '$this->assertEquals($expected, $somevar);' . "\n";
128 128
 	}
129 129
 
130 130
 
131 131
 	private function recurseArrayAssertion($toAssert, $depth, $parentKey) {
132
-		$prefix = str_repeat("\t",$depth);
132
+		$prefix = str_repeat("\t", $depth);
133 133
 		echo "\t{$prefix}'$parentKey' => array(\n";
134 134
 		$ctr = 0;
135 135
 		$len = sizeof(array_keys($toAssert));
136
-		foreach ($toAssert as $key => $value) {
137
-			if (is_array($value)) {
138
-				$this->recurseArrayAssertion($value, $depth+1, $key);
136
+		foreach($toAssert as $key => $value) {
137
+			if(is_array($value)) {
138
+				$this->recurseArrayAssertion($value, $depth + 1, $key);
139 139
 			} else {
140 140
 				$escValue = str_replace("'", '\\\'', $value);
141 141
 				$comma = ',';
142
-				if ($ctr == $len-1) {
142
+				if($ctr == $len - 1) {
143 143
 					$comma = '';
144 144
 				}
145 145
 				echo "\t\t$prefix'$key' => '$escValue'$comma\n";
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 		$size = sizeof($splits);
164 164
 		$nameToCheck = end($splits);
165 165
 		$this->assertEquals($actualTabName, $nameToCheck);
166
-		if ($size == 1) {
166
+		if($size == 1) {
167 167
 			$this->assertEquals("Root_${tabName}", $tab->id());
168 168
 		} else {
169 169
 			$expected = "Root_{$splits[0]}_set_{$splits[1]}";
@@ -174,7 +174,7 @@  discard block
 block discarded – undo
174 174
 	}
175 175
 
176 176
 
177
-	public function checkFieldExists($tab,$fieldName) {
177
+	public function checkFieldExists($tab, $fieldName) {
178 178
 		$fields = $tab->Fields();
179 179
 		$field = $tab->fieldByName($fieldName);
180 180
 		$this->assertTrue($field != null);
@@ -207,11 +207,11 @@  discard block
 block discarded – undo
207 207
 		$status = $index->getStatus()->getData();
208 208
 
209 209
 		$numberDocsInIndex = -1; // flag value for not yet indexed
210
-		if (isset($status['indices']['elastica_ss_module_test_en_us']['docs'])) {
210
+		if(isset($status['indices']['elastica_ss_module_test_en_us']['docs'])) {
211 211
 			$numberDocsInIndex = $status['indices']['elastica_ss_module_test_en_us']['docs']['num_docs'];
212 212
 		}
213 213
 
214
-		$this->assertEquals($expectedAmount,$numberDocsInIndex);
214
+		$this->assertEquals($expectedAmount, $numberDocsInIndex);
215 215
 	}
216 216
 
217 217
 	/*
@@ -222,7 +222,7 @@  discard block
 block discarded – undo
222 222
 		$status = $index->getStatus()->getData();
223 223
 
224 224
 		$numberDocsInIndex = -1; // flag value for not yet indexed
225
-		if (isset($status['indices']['elastica_ss_module_test_en_us']['docs'])) {
225
+		if(isset($status['indices']['elastica_ss_module_test_en_us']['docs'])) {
226 226
 			$numberDocsInIndex = $status['indices']['elastica_ss_module_test_en_us']['docs']['num_docs'];
227 227
 		}
228 228
 
Please login to merge, or discard this patch.
tests/SearchAndIndexingTest.php 3 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -479,6 +479,9 @@
 block discarded – undo
479 479
 	}
480 480
 
481 481
 
482
+	/**
483
+	 * @param string $query
484
+	 */
482 485
 	private function getResultsFor($query, $pageLength = 10, $fields = array('Title' => 1, 'Description' => 1)) {
483 486
 		$es = new ElasticSearcher();
484 487
 		$es->setStart(0);
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -140,7 +140,7 @@
 block discarded – undo
140 140
 
141 141
 	public function testEach() {
142 142
 		$callback = function($fp) {
143
-		    $this->assertTrue(true, 'Callback reached');
143
+			$this->assertTrue(true, 'Callback reached');
144 144
 		};
145 145
 		$resultList = $this->getResultsFor('New Zealand',10);
146 146
 		$resultList->each($callback);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -319,10 +319,10 @@
 block discarded – undo
319 319
 
320 320
 		foreach($toarr as $item) {
321 321
 			$hl = $item->SearchHighlights;
322
-			foreach ($hl as $shl) {
322
+			foreach($hl as $shl) {
323 323
 				$html = $shl->Snippet;
324 324
 				$splits = explode('<strong class="hl">', $html);
325
-				if (sizeof($splits) > 1) {
325
+				if(sizeof($splits) > 1) {
326 326
 					$splits = explode('</strong>', $splits[1]);
327 327
 					$term = $splits[0];
328 328
 					$term = strtolower($term);
Please login to merge, or discard this patch.
tests/TranslatableUnitTest.php 2 patches
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -233,6 +233,9 @@
 block discarded – undo
233 233
 
234 234
 
235 235
 
236
+	/**
237
+	 * @param PaginatedList $paginated
238
+	 */
236 239
 	private function makeCode($paginated) {
237 240
 		$results = $paginated->getList()->toArray();
238 241
 		$ctr = 0;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
 		$es->setLocale($locale);
103 103
 		$es->setClasses('FlickrPhotoTO');
104 104
 
105
-		$fields = array('Description.standard' => 1,'Title.standard' => 1);
105
+		$fields = array('Description.standard' => 1, 'Title.standard' => 1);
106 106
 		$results = $es->moreLikeThis($fp, $fields, true);
107 107
 
108 108
 		$terms = $results->getList()->MoreLikeThisTerms;
Please login to merge, or discard this patch.