Ethan Lane
7c9411b4e2
All checks were successful
Test / build (push) Successful in 7s
- Remove the missed deprecated `toBeCalledWith` function call and replaced with `toHaveBeenCalledWith` - There should now no longer be any deprecated functions #138 Reviewed-on: #195 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
234 lines
No EOL
9.4 KiB
TypeScript
234 lines
No EOL
9.4 KiB
TypeScript
import { ErrorCode } from "../src/constants/ErrorCode";
|
||
import ErrorMessages from "../src/constants/ErrorMessages";
|
||
import ImageHelper from "../src/helpers/imageHelper";
|
||
import randomBunny from "../src/index";
|
||
import fetch from "got-cjs";
|
||
|
||
jest.mock('got-cjs');
|
||
const fetchMock = jest.mocked(fetch);
|
||
|
||
describe('randomBunny', () => {
|
||
test('GIVEN subreddit AND sortBy is supplied, EXPECT successful result', async() => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify({
|
||
data: {
|
||
children: [
|
||
{
|
||
data: {
|
||
archived: false,
|
||
downs: 0,
|
||
hidden: false,
|
||
permalink: '/r/Rabbits/comments/12pa5te/someone_told_pickles_its_monday_internal_fury/',
|
||
subreddit: 'Rabbits',
|
||
subreddit_subscribers: 298713,
|
||
title: 'Someone told pickles it’s Monday… *internal fury*',
|
||
ups: 1208,
|
||
url: 'https://i.redd.it/cr8xudsnkgua1.jpg',
|
||
},
|
||
},
|
||
],
|
||
}
|
||
}),
|
||
});
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(result.IsSuccess).toBeTruthy();
|
||
expect(result.Result).toBeDefined();
|
||
expect(result.Error).toBeUndefined();
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
});
|
||
|
||
test('GIVEN sortBy is NOT supplied, expect it to default to hot', async () => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify({
|
||
data: {
|
||
children: [
|
||
{
|
||
data: {
|
||
archived: false,
|
||
downs: 0,
|
||
hidden: false,
|
||
permalink: '/r/Rabbits/comments/12pa5te/someone_told_pickles_its_monday_internal_fury/',
|
||
subreddit: 'Rabbits',
|
||
subreddit_subscribers: 298713,
|
||
title: 'Someone told pickles it’s Monday… *internal fury*',
|
||
ups: 1208,
|
||
url: 'https://i.redd.it/cr8xudsnkgua1.jpg',
|
||
},
|
||
},
|
||
],
|
||
}
|
||
}),
|
||
});
|
||
|
||
const result = await randomBunny('rabbits');
|
||
|
||
expect(result.IsSuccess).toBeTruthy();
|
||
expect(result.Result).toBeDefined();
|
||
expect(result.Error).toBeUndefined();
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/hot.json?limit=100');
|
||
});
|
||
|
||
test('GIVEN the fetch fails, EXPECT failure result', async () => {
|
||
fetchMock.mockRejectedValue('Test Reason')
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(result.IsSuccess).toBeFalsy();
|
||
expect(result.Result).toBeUndefined();
|
||
expect(result.Error).toBeDefined();
|
||
|
||
expect(result.Error!.Code).toBe(ErrorCode.FailedToFetchReddit);
|
||
expect(result.Error!.Message).toBe(ErrorMessages.FailedToFetchReddit);
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
});
|
||
|
||
test('GIVEN the result is NOT valid JSON, EXPECT failure result', async () => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify(null),
|
||
});
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(result.IsSuccess).toBeFalsy();
|
||
expect(result.Result).toBeUndefined();
|
||
expect(result.Error).toBeDefined();
|
||
|
||
expect(result.Error!.Code).toBe(ErrorCode.UnableToParseJSON);
|
||
expect(result.Error!.Message).toBe(ErrorMessages.UnableToParseJSON);
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
});
|
||
|
||
test('GIVEN randomSelect does NOT find a response, EXPECT failure result', async () => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify({
|
||
data: {
|
||
children: [],
|
||
}
|
||
}),
|
||
});
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(result.IsSuccess).toBeFalsy();
|
||
expect(result.Result).toBeUndefined();
|
||
expect(result.Error).toBeDefined();
|
||
|
||
expect(result.Error!.Code).toBe(ErrorCode.NoImageResultsFound);
|
||
expect(result.Error!.Message).toBe(ErrorMessages.NoImageResultsFound);
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
});
|
||
|
||
test('GIVEN randomSelect does NOT find a valid response, EXPECT failure result', async () => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify({
|
||
data: {
|
||
children: [
|
||
{
|
||
data: {
|
||
archived: false,
|
||
downs: 0,
|
||
hidden: false,
|
||
permalink: '/r/Rabbits/comments/12pa5te/someone_told_pickles_its_monday_internal_fury/',
|
||
subreddit: 'Rabbits',
|
||
subreddit_subscribers: 298713,
|
||
title: 'Someone told pickles it’s Monday… *internal fury*',
|
||
ups: 1208,
|
||
url: 'https://i.redd.it/cr8xudsnkgua1.webp',
|
||
},
|
||
},
|
||
],
|
||
}
|
||
}),
|
||
});
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(result.IsSuccess).toBeFalsy();
|
||
expect(result.Result).toBeUndefined();
|
||
expect(result.Error).toBeDefined();
|
||
|
||
expect(result.Error!.Code).toBe(ErrorCode.NoImageResultsFound);
|
||
expect(result.Error!.Message).toBe(ErrorMessages.NoImageResultsFound);
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
});
|
||
|
||
test("GIVEN data fetched is a gallery AND an image is returned from the helper, EXPECT this to be used", async () => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify({
|
||
data: {
|
||
children: [
|
||
{
|
||
data: {
|
||
archived: false,
|
||
downs: 0,
|
||
hidden: false,
|
||
permalink: '/r/Rabbits/comments/12pa5te/someone_told_pickles_its_monday_internal_fury/',
|
||
subreddit: 'Rabbits',
|
||
subreddit_subscribers: 298713,
|
||
title: 'Someone told pickles it’s Monday… *internal fury*',
|
||
ups: 1208,
|
||
url: 'https://i.redd.it/gallery/cr8xudsnkgua1',
|
||
},
|
||
},
|
||
],
|
||
}
|
||
}),
|
||
});
|
||
|
||
ImageHelper.FetchImageFromRedditGallery = jest.fn().mockResolvedValue("https://i.redd.it/cr8xudsnkgua1.jpg")
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(result.IsSuccess).toBeTruthy();
|
||
expect(result.Result).toBeDefined();
|
||
|
||
expect(fetchMock).toHaveBeenCalledWith('https://reddit.com/r/rabbits/new.json?limit=100');
|
||
|
||
expect(ImageHelper.FetchImageFromRedditGallery).toHaveBeenCalledTimes(1);
|
||
expect(ImageHelper.FetchImageFromRedditGallery).toHaveBeenCalledWith("https://i.redd.it/gallery/cr8xudsnkgua1");
|
||
});
|
||
|
||
test("GIVEN data fetched is a gallery AND an image is not returned from the helper, EXPECT error", async () => {
|
||
fetchMock.mockResolvedValue({
|
||
body: JSON.stringify({
|
||
data: {
|
||
children: [
|
||
{
|
||
data: {
|
||
archived: false,
|
||
downs: 0,
|
||
hidden: false,
|
||
permalink: '/r/Rabbits/comments/12pa5te/someone_told_pickles_its_monday_internal_fury/',
|
||
subreddit: 'Rabbits',
|
||
subreddit_subscribers: 298713,
|
||
title: 'Someone told pickles it’s Monday… *internal fury*',
|
||
ups: 1208,
|
||
url: 'https://i.redd.it/gallery/cr8xudsnkgua1',
|
||
},
|
||
},
|
||
],
|
||
}
|
||
}),
|
||
});
|
||
|
||
ImageHelper.FetchImageFromRedditGallery = jest.fn().mockResolvedValue(undefined)
|
||
|
||
const result = await randomBunny('rabbits', 'new');
|
||
|
||
expect(ImageHelper.FetchImageFromRedditGallery).toHaveBeenCalledTimes(1);
|
||
|
||
expect(result.IsSuccess).toBe(false);
|
||
expect(result.Error).toBeDefined();
|
||
expect(result.Error?.Code).toBe(ErrorCode.NoImageResultsFound);
|
||
expect(result.Error?.Message).toBe(ErrorMessages.NoImageResultsFound);
|
||
});
|
||
}); |