-
Notifications
You must be signed in to change notification settings - Fork 589
/
Copy pathArticleHero.tests.tsx
75 lines (67 loc) · 2.04 KB
/
ArticleHero.tests.tsx
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
import { Image } from "@artsy/palette-mobile"
import { screen } from "@testing-library/react-native"
import { ArticleHero } from "app/Scenes/Article/Components/ArticleHero"
import { setupTestWrapper } from "app/utils/tests/setupTestWrapper"
import { graphql } from "react-relay"
// React-test-renderer has issues with memo components, so we need to mock the palette-mobile Image component
// Until it gets fixed
// See https://github.com/facebook/react/issues/17301
jest.mock("@artsy/palette-mobile", () => ({
...jest.requireActual("@artsy/palette-mobile"),
Image: require("react-native").Image,
}))
describe("ArticleHero", () => {
const { renderWithRelay } = setupTestWrapper({
Component: ArticleHero,
query: graphql`
query ArticleHeroTestQuery {
article(id: "foo") {
...ArticleHero_article
}
}
`,
})
it("renders default fields", () => {
renderWithRelay({
Article: () => ({
hero: {
image: {
url: "https://example.com/image.jpg",
aspectRatio: 1.5,
},
},
vertical: "Vertical",
title: "Title",
byline: "Byline",
publishedAt: "2023-06-12T00:00:00.000",
}),
})
expect(screen.getByText("Vertical")).toBeOnTheScreen()
expect(screen.getByText("Title")).toBeOnTheScreen()
expect(screen.getByText("Byline")).toBeOnTheScreen()
expect(screen.getByText("Jun 12, 2023")).toBeOnTheScreen()
})
it("renders hero image if available", () => {
renderWithRelay({
Article: () => ({
hero: {
image: {
url: "https://example.com/image.jpg",
aspectRatio: 1.5,
},
},
publishedAt: "2023-06-15T00:00:00.000Z",
}),
})
expect(screen.UNSAFE_getByType(Image)).toBeTruthy()
})
it("does not render hero image if not available", () => {
renderWithRelay({
Article: () => ({
hero: null,
publishedAt: "2023-06-15T00:00:00.000Z",
}),
})
expect(screen.UNSAFE_queryByType(Image)).toBeNull()
})
})