summaryrefslogtreecommitdiffstats
path: root/tests/javascript/unit/services/feed.service.spec.ts
blob: 5f0c058cdb18137806bd19ce462f62b5fd3462ac (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
import { FeedService } from './../../../../src/dataservices/feed.service'
import axios from '@nextcloud/axios'

jest.mock('@nextcloud/axios')

describe('feed.service.ts', () => {
	'use strict'

	beforeEach(() => {
		(axios.get as any).mockReset();
		(axios.post as any).mockReset()
	})

	describe('fetchAllFeeds', () => {
		it('should call GET to retrieve all feeds', async () => {
			(axios as any).get.mockResolvedValue({ data: { feeds: [] } })

			await FeedService.fetchAllFeeds()

			expect(axios.get).toBeCalled()
		})
	})

	describe('addFeed', () => {
		it('should call POST with item id in URL and read param', async () => {
			await FeedService.addFeed({ url: 'http://example.com', folderId: 0 })

			expect(axios.post).toBeCalled()
			const args = (axios.post as any).mock.calls[0]

			expect(args[1].url).toEqual('http://example.com')
		})
	})
})