blob: ff65eaece70f45d6870b5579354ae4c3d7b8ac39 [file] [log] [blame]
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import React from 'react';
import {render, screen, cleanup} from '@testing-library/react';
import userEvent from '@testing-library/user-event'
import {assert} from 'chai';
import sinon from 'sinon';
import RadioDescription from './RadioDescription.tsx';
describe('RadioDescription', () => {
afterEach(cleanup);
it('renders', () => {
render(<RadioDescription />);
// look for blue radios
const radioOne = screen.getByRole('radio', {name: /Web Developer/i});
assert.isNotNull(radioOne)
const radioTwo = screen.getByRole('radio', {name: /End User/i});
assert.isNotNull(radioTwo)
const radioThree = screen.getByRole('radio', {name: /Chromium Contributor/i});
assert.isNotNull(radioThree)
});
it('checks selected radio value', () => {
// We're passing in the "Web Developer" value here manually
// to tell our code that that radio button is selected.
render(<RadioDescription value={'Web Developer'} />);
const checkedRadio = screen.getByRole('radio', {name: /Web Developer/i});
assert.isTrue(checkedRadio.checked);
// Extra check to make sure we haven't checked every single radio button.
const uncheckedRadio = screen.getByRole('radio', {name: /End User/i});
assert.isFalse(uncheckedRadio.checked);
});
it('sets radio value when clicked', () => {
// Using the sinon.js testing library to create a function for testing.
const setValue = sinon.stub();
render(<RadioDescription setValue={setValue} />);
const radio = screen.getByRole('radio', {name: /Web Developer/i});
userEvent.click(radio);
// Asserts that "Web Developer" was passed into our "setValue" function.
sinon.assert.calledWith(setValue, 'Web Developer');
});
});