Update PollEndBody tests
This commit is contained in:
parent
8fabb24e83
commit
d5bbe8e5b2
2 changed files with 47 additions and 10 deletions
|
@ -6,16 +6,16 @@ SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
||||||
Please see LICENSE files in the repository root for full details.
|
Please see LICENSE files in the repository root for full details.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import React from "react";
|
|
||||||
import { render, waitFor } from "jest-matrix-react";
|
import { render, waitFor } from "jest-matrix-react";
|
||||||
import { EventTimeline, MatrixEvent, Room, M_TEXT } from "matrix-js-sdk/src/matrix";
|
|
||||||
import { logger } from "matrix-js-sdk/src/logger";
|
import { logger } from "matrix-js-sdk/src/logger";
|
||||||
|
import { EventTimeline, M_TEXT, MatrixEvent, Room } from "matrix-js-sdk/src/matrix";
|
||||||
|
import React from "react";
|
||||||
|
|
||||||
import { IBodyProps } from "../../../../../src/components/views/messages/IBodyProps";
|
import { IBodyProps } from "../../../../../src/components/views/messages/IBodyProps";
|
||||||
import { MPollEndBody } from "../../../../../src/components/views/messages/MPollEndBody";
|
import { MPollEndBody } from "../../../../../src/components/views/messages/MPollEndBody";
|
||||||
import MatrixClientContext from "../../../../../src/contexts/MatrixClientContext";
|
import MatrixClientContext from "../../../../../src/contexts/MatrixClientContext";
|
||||||
import { RoomPermalinkCreator } from "../../../../../src/utils/permalinks/Permalinks";
|
|
||||||
import { MediaEventHelper } from "../../../../../src/utils/MediaEventHelper";
|
import { MediaEventHelper } from "../../../../../src/utils/MediaEventHelper";
|
||||||
|
import { RoomPermalinkCreator } from "../../../../../src/utils/permalinks/Permalinks";
|
||||||
import {
|
import {
|
||||||
flushPromises,
|
flushPromises,
|
||||||
getMockClientWithEventEmitter,
|
getMockClientWithEventEmitter,
|
||||||
|
@ -132,7 +132,7 @@ describe("<MPollEndBody />", () => {
|
||||||
|
|
||||||
// quick check for poll tile
|
// quick check for poll tile
|
||||||
expect(getByTestId("pollQuestion").innerHTML).toEqual("Question?");
|
expect(getByTestId("pollQuestion").innerHTML).toEqual("Question?");
|
||||||
expect(getByTestId("totalVotes").innerHTML).toEqual("Final result based on 0 votes");
|
expect(getByTestId("totalVotes").innerHTML).toEqual("Final result based on 0 votes. Click here to see full results");
|
||||||
});
|
});
|
||||||
|
|
||||||
it("does not render a poll tile when end event is invalid", async () => {
|
it("does not render a poll tile when end event is invalid", async () => {
|
||||||
|
|
|
@ -46,9 +46,26 @@ exports[`<MPollEndBody /> when poll start event exists in current timeline rende
|
||||||
Socks
|
Socks
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
class="mx_PollOption_votesWrapper"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_PollOption_facePile"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_AccessibleButton mx_FacePile"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="_stacked-avatars_mcap2_111"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
class="mx_PollOption_optionVoteCount"
|
class="mx_PollOption_optionVoteCount"
|
||||||
>
|
>
|
||||||
0 votes
|
0 votes
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -78,9 +95,26 @@ exports[`<MPollEndBody /> when poll start event exists in current timeline rende
|
||||||
Shoes
|
Shoes
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
class="mx_PollOption_votesWrapper"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_PollOption_facePile"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="mx_AccessibleButton mx_FacePile"
|
||||||
|
role="button"
|
||||||
|
tabindex="0"
|
||||||
|
>
|
||||||
|
<div
|
||||||
|
class="_stacked-avatars_mcap2_111"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<span
|
||||||
class="mx_PollOption_optionVoteCount"
|
class="mx_PollOption_optionVoteCount"
|
||||||
>
|
>
|
||||||
0 votes
|
0 votes
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -96,9 +130,12 @@ exports[`<MPollEndBody /> when poll start event exists in current timeline rende
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="mx_MPollBody_totalVotes"
|
class="mx_MPollBody_totalVotes"
|
||||||
|
>
|
||||||
|
<span
|
||||||
data-testid="totalVotes"
|
data-testid="totalVotes"
|
||||||
>
|
>
|
||||||
Final result based on 0 votes
|
Final result based on 0 votes. Click here to see full results
|
||||||
|
</span>
|
||||||
<div
|
<div
|
||||||
class="mx_Spinner"
|
class="mx_Spinner"
|
||||||
>
|
>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue