summaryrefslogtreecommitdiffstats
path: root/js/tests/services/queries/lessthanSpec.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/services/queries/lessthanSpec.coffee')
-rw-r--r--js/tests/services/queries/lessthanSpec.coffee80
1 files changed, 80 insertions, 0 deletions
diff --git a/js/tests/services/queries/lessthanSpec.coffee b/js/tests/services/queries/lessthanSpec.coffee
new file mode 100644
index 000000000..4b0a7f494
--- /dev/null
+++ b/js/tests/services/queries/lessthanSpec.coffee
@@ -0,0 +1,80 @@
+###
+
+ownCloud - News
+
+@author Bernhard Posselt
+@copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
+
+This library is free software; you can redistribute it and/or
+modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+License as published by the Free Software Foundation; either
+version 3 of the License, or any later version.
+
+This library is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+
+You should have received a copy of the GNU Affero General Public
+License along with this library. If not, see <http://www.gnu.org/licenses/>.
+
+###
+
+describe '_LessThanQuery', ->
+
+
+ beforeEach module 'News'
+
+ beforeEach inject (_LessThanQuery, _Model, _Query) =>
+ @query = _LessThanQuery
+ @q = _Query
+ @model = _Model
+ data1 =
+ id: 3
+ name: 'donovan'
+
+ data2 =
+ id: 5
+ name: 'donovan'
+
+ data3 =
+ id: 2
+ name: 'jack'
+
+ @data = [
+ data1
+ data2
+ data3
+ ]
+
+
+ it 'should be a _ModelFilter subclass', =>
+ expect(new @query('id', 3) instanceof @q).toBe(true)
+
+
+ it 'should have a correct hash', =>
+ expect(new @query('id', 3).hashCode()).toBe('lessthan_id_3')
+
+
+ it 'should return an empty list on empty list', =>
+ query = new @query('id', 3)
+ expect(query.exec([]).length).toBe(0)
+
+
+ it 'should query on one', =>
+ query = new @query('id', 3)
+
+ expect(query.exec(@data)).toContain(@data[2])
+
+
+ it 'should return an empty list if no element is matched', =>
+ query = new @query('id', 2)
+
+ expect(query.exec(@data).length).toBe(0)
+
+
+ it 'should return list with multiple elements if an element is matched', =>
+ query = new @query('id', 4)
+
+ expect(query.exec(@data)).toContain(@data[0])
+ expect(query.exec(@data)).toContain(@data[2]) \ No newline at end of file