-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
test.js
86 lines (47 loc) · 1.53 KB
/
test.js
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
'use strict'
const test = require( 'ava' )
const albumArt = require( './index' )
test( 'returns a url', async t => {
t.plan( 1 )
const response = await albumArt( 'cher' )
t.is( response.indexOf( 'http' ), 0, 'response is a URL' )
} )
test( 'specifying a size returns a different url', async t => {
t.plan( 1 )
const response1 = await albumArt( 'cher' )
const response2 = await albumArt( 'cher', {size: 'small'} )
t.not( response1, response2, 'small and large size are different URLs' )
} )
test( 'album vs artist art return different urls', async t => {
t.plan( 1 )
const response1 = await albumArt( 'cher' )
const response2 = await albumArt( 'cher', {album: 'i got you babe'} )
t.not( response1, response2, 'album seach returns different URL' )
} )
test( 'handles invalid query', async t => {
t.plan( 1 )
try {
console.log( await albumArt( 'asasdgsdgazsdgfzsdf' ) )
} catch ( e ) {
t.is( e instanceof Error, true, 'response is an error' )
}
} )
test( 'handles invalid query #2', async t => {
t.plan( 1 )
try {
console.log( await albumArt( '' ) )
} catch ( e ) {
t.is( e instanceof Error, true, 'response is an error' )
}
} )
test( 'callback returns a url', async t => {
t.plan( 1 )
await albumArt( 'cher', ( _err, res ) => {
t.is( res.indexOf( 'http' ), 0, 'response is a URL' )
} )
} )
test( 'can handle special characters in album name', async t => {
t.plan( 1 )
const response = await albumArt( 'kaytranada', {album: '99.9%'} )
t.is( response.indexOf( 'http' ), 0, 'response is a URL' )
} )