forked from online-go/online-go.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull Request online-go#2845: POC - Add tooltip to modal, Modal provid…
…er (for computer challenge, language picker, game fork)
- Loading branch information
Showing
15 changed files
with
474 additions
and
173 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
/* | ||
* Copyright (C) Online-Go.com | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
/* cspell: words groupadmin cotsen */ | ||
import * as React from "react"; | ||
|
||
import * as ChallengeModal from "./ChallengeModal"; | ||
import { fireEvent, render, screen } from "@testing-library/react"; | ||
import { ModalProvider } from "../Modal/ModalProvider"; | ||
import { ModalContext, ModalTypes } from "../Modal/ModalContext"; | ||
import * as DynamicHelp from "react-dynamic-help"; | ||
|
||
jest.mock("./../Modal", () => { | ||
return { | ||
...jest.requireActual("./../Modal"), | ||
}; | ||
}); | ||
|
||
describe("ChallengeModal", () => { | ||
it("should do a computer challenge via provider", () => { | ||
const challengeModalSpy = jest | ||
.spyOn(ChallengeModal, "ChallengeModal") | ||
.mockImplementation(jest.fn()); | ||
|
||
render( | ||
<ModalProvider> | ||
<ModalContext.Consumer> | ||
{({ showModal }) => { | ||
showModal(ModalTypes.Challenge); | ||
return null; | ||
}} | ||
</ModalContext.Consumer> | ||
</ModalProvider>, | ||
); | ||
|
||
expect(challengeModalSpy.mock.calls[0][0]).toStrictEqual({ | ||
mode: "computer", | ||
initialState: null, | ||
playerId: undefined, | ||
}); | ||
|
||
challengeModalSpy.mockRestore(); | ||
}); | ||
|
||
it("should close", () => { | ||
const DynamicHelpProviderValue = { | ||
registerTargetItem: jest.fn().mockReturnValue({ ref: jest.fn() }), | ||
triggerFlow: jest.fn(), | ||
enableHelp: jest.fn(), | ||
getFlowInfo: jest.fn(), | ||
enableFlow: jest.fn(), | ||
reloadUserState: jest.fn(), | ||
signalUsed: jest.fn(), | ||
getSystemStatus: jest.fn(), | ||
resetHelp: jest.fn(), | ||
}; | ||
|
||
render( | ||
<DynamicHelp.Api.Provider value={DynamicHelpProviderValue}> | ||
<ModalProvider> | ||
<ModalContext.Consumer> | ||
{({ showModal }) => { | ||
showModal(ModalTypes.Challenge); | ||
return null; | ||
}} | ||
</ModalContext.Consumer> | ||
</ModalProvider> | ||
</DynamicHelp.Api.Provider>, | ||
); | ||
const closeButton = screen.getByText("Close"); | ||
expect(closeButton).toBeInTheDocument(); | ||
fireEvent.click(closeButton); | ||
expect(closeButton).not.toBeInTheDocument(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.