summaryrefslogtreecommitdiffstats
path: root/js/tests/services/models/itemmodelSpec.coffee
blob: 4decc791883e488fc13db8299ced7dfb5c7c87fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
###

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 'ItemModel', ->

	beforeEach module 'News'

	beforeEach inject (@ItemModel, @_Model) =>


	it 'should extend model', =>
		expect(@ItemModel instanceof @_Model).toBeTruthy()


	it 'should also update items with the same feed id and guidhash', =>
		item1 = {id: 4, guidHash: 'abc', feedId: 3}
		@ItemModel.add(item1)

		expect(@ItemModel.getById(4)).toBe(item1)

		# normal id update
		item2 = {id: 4, guidHash: 'abc', feedId: 4}
		@ItemModel.add(item2)
		expect(@ItemModel.size()).toBe(1)

		# new feeds should be added normally if different
		item3 = {id: 5, guidHash: 'abc', feedId: 6}
		@ItemModel.add(item3)
		expect(@ItemModel.size()).toBe(2)

		# feed should be updated when guidhash and feedid the same
		item4 = {id: 3, guidHash: 'abc', feedId: 6}
		@ItemModel.add(item4)
		expect(@ItemModel.getById(3).guidHash).toBe(item4.guidHash)
		expect(@ItemModel.getById(3).feedId).toBe(item4.feedId)
		expect(@ItemModel.getById(3).id).toBe(item4.id)
		expect(@ItemModel.getById(5)).toBe(undefined)
		expect(@ItemModel.size()).toBe(2)


	it 'should also remove the feed from the url cache when its removed', =>
		item = {id: 4, guidHash: 'abc', feedId: 3}
		@ItemModel.add(item)

		expect(@ItemModel.getById(4)).toBe(item)
		expect(@ItemModel.getByGuidHashAndFeedId('abc', 3)).toBe(item)

		@ItemModel.removeById(4)
		expect(@ItemModel.getByGuidHashAndFeedId('abc', 3)).toBe(undefined)


	it 'should bind the correct isRead() method to the item', =>
		item = {id: 3, guidHash: 'abc', feedId: 6, status: 16}

		@ItemModel.add(item)
		item.setRead()

		expect(@ItemModel.getById(3).isRead()).toBe(true)


	it 'should bind the correct set unread method to the item', =>
		item = {id: 3, guidHash: 'abc', feedId: 6, status: 16}

		@ItemModel.add(item)
		item.setUnread()

		expect(@ItemModel.getById(3).isRead()).toBe(false)


	it 'should bind the correct set starred method to the item', =>
		item = {id: 3, guidHash: 'abc', feedId: 6, status: 16}

		@ItemModel.add(item)
		item.setStarred()

		expect(@ItemModel.getById(3).isStarred()).toBe(true)


	it 'should bind the correct set unstarred method to the item', =>
		item = {id: 3, guidHash: 'abc', feedId: 6, status: 16}

		@ItemModel.add(item)
		item.setUnstarred()

		expect(@ItemModel.getById(3).isStarred()).toBe(false)


	it 'should return the lowest id', =>
		@ItemModel.add({id: 2, guidHash: 'abc', feedId: 2, status: 16})
		@ItemModel.add({id: 3, guidHash: 'abcd', feedId: 2, status: 16})
		@ItemModel.add({id: 1, guidHash: 'abce', feedId: 2, status: 16})
		@ItemModel.add({id: 6, guidHash: 'abcf', feedId: 2, status: 16})

		expect(@ItemModel.getLowestId()).toBe(1)