Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F2753083
restSearchClient.test.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
restSearchClient.test.js
View Options
/* global fetchMock */
const
restSearchClient
=
require
(
'../../resources/skins.vector.search/restSearchClient.js'
);
const
jestFetchMock
=
require
(
'jest-fetch-mock'
);
const
mockedRequests
=
!
process
.
env
.
TEST_LIVE_REQUESTS
;
const
configMock
=
{
get
:
jest
.
fn
().
mockImplementation
(
(
key
,
fallback
=
null
)
=>
{
if
(
key
===
'wgScriptPath'
)
{
return
'/w'
;
}
if
(
key
===
'wgScript'
)
{
return
'/w/index.php'
;
}
if
(
key
===
'wgVectorSearchApiUrl'
)
{
return
'https://en.wikipedia.org/w/rest.php'
;
}
return
fallback
;
}
),
set
:
jest
.
fn
()
};
describe
(
'restApiSearchClient'
,
()
=>
{
beforeAll
(
()
=>
{
jestFetchMock
.
enableFetchMocks
();
}
);
afterAll
(
()
=>
{
jestFetchMock
.
disableFetchMocks
();
}
);
beforeEach
(
()
=>
{
fetchMock
.
resetMocks
();
if
(
!
mockedRequests
)
{
fetchMock
.
disableMocks
();
}
}
);
test
(
'2 results'
,
async
()
=>
{
const
thumbUrl
=
'//upload.wikimedia.org/wikipedia/commons/0/01/MediaWiki-smaller-logo.png'
;
const
restResponse
=
{
pages
:
[
{
id
:
37298
,
key
:
'Media'
,
label
:
'Media'
,
title
:
'Media'
,
description
:
'Wikimedia disambiguation page'
,
thumbnail
:
null
,
url
:
'/w/index.php?title=Special%3ASearch&search=Media'
,
value
:
37298
},
{
id
:
323710
,
key
:
'MediaWiki'
,
label
:
'MediaWiki'
,
title
:
'MediaWiki'
,
description
:
'wiki software'
,
thumbnail
:
{
width
:
200
,
height
:
189
,
url
:
thumbUrl
},
url
:
'/w/index.php?title=Special%3ASearch&search=MediaWiki'
,
value
:
323710
}
]
};
fetchMock
.
mockOnce
(
JSON
.
stringify
(
restResponse
)
);
const
searchResult
=
await
restSearchClient
(
configMock
).
fetchByTitle
(
'media'
,
2
).
fetch
;
const
controller
=
new
AbortController
();
expect
(
searchResult
.
query
).
toStrictEqual
(
'media'
);
expect
(
searchResult
.
results
).
toBeTruthy
();
expect
(
searchResult
.
results
.
length
).
toBe
(
2
);
expect
(
searchResult
.
results
[
0
]
).
toStrictEqual
(
Object
.
assign
(
{},
restResponse
.
pages
[
0
],
{
// thumbnail: null -> thumbnail: undefined
thumbnail
:
undefined
}
)
);
expect
(
searchResult
.
results
[
1
]
).
toStrictEqual
(
restResponse
.
pages
[
1
]
);
if
(
mockedRequests
)
{
expect
(
fetchMock
).
toHaveBeenCalledTimes
(
1
);
expect
(
fetchMock
).
toHaveBeenCalledWith
(
'https://en.wikipedia.org/w/rest.php/v1/search/title?q=media&limit=2'
,
{
headers
:
{
accept
:
'application/json'
},
signal
:
controller
.
signal
}
);
}
}
);
test
(
'0 results'
,
async
()
=>
{
const
restResponse
=
{
pages
:
[]
};
fetchMock
.
mockOnce
(
JSON
.
stringify
(
restResponse
)
);
const
searchResult
=
await
restSearchClient
(
configMock
).
fetchByTitle
(
'thereIsNothingLikeThis'
).
fetch
;
const
controller
=
new
AbortController
();
expect
(
searchResult
.
query
).
toStrictEqual
(
'thereIsNothingLikeThis'
);
expect
(
searchResult
.
results
).
toBeTruthy
();
expect
(
searchResult
.
results
.
length
).
toBe
(
0
);
if
(
mockedRequests
)
{
expect
(
fetchMock
).
toHaveBeenCalledTimes
(
1
);
expect
(
fetchMock
).
toHaveBeenCalledWith
(
'https://en.wikipedia.org/w/rest.php/v1/search/title?q=thereIsNothingLikeThis&limit=10'
,
{
headers
:
{
accept
:
'application/json'
},
signal
:
controller
.
signal
}
);
}
}
);
if
(
mockedRequests
)
{
test
(
'network error'
,
async
()
=>
{
fetchMock
.
mockRejectOnce
(
new
Error
(
'failed'
)
);
await
expect
(
restSearchClient
(
configMock
).
fetchByTitle
(
'anything'
).
fetch
).
rejects
.
toThrow
(
'failed'
);
}
);
}
}
);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Jul 3, 20:46 (1 d, 6 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
98/09/bcfa23b633b1694bbfaac456bcf8
Default Alt Text
restSearchClient.test.js (3 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment