2023-06-30 05:38:33 -05:00
|
|
|
/////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// pgAdmin 4 - PostgreSQL Tools
|
|
|
|
//
|
2024-01-01 02:43:48 -06:00
|
|
|
// Copyright (C) 2013 - 2024, The pgAdmin Development Team
|
2023-06-30 05:38:33 -05:00
|
|
|
// This software is released under the PostgreSQL Licence
|
|
|
|
//
|
|
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
|
2023-06-30 05:38:33 -05:00
|
|
|
import React from 'react';
|
2023-10-23 07:13:17 -05:00
|
|
|
|
|
|
|
import { render } from '@testing-library/react';
|
2023-06-30 05:38:33 -05:00
|
|
|
import Theme from '../../../pgadmin/static/js/Theme';
|
|
|
|
import ForgotPasswordPage from '../../../pgadmin/static/js/SecurityPages/ForgotPasswordPage';
|
|
|
|
|
|
|
|
describe('ForgotPasswordPage', ()=>{
|
|
|
|
let ctrlMount = (props)=>{
|
2023-10-23 07:13:17 -05:00
|
|
|
return render(<Theme>
|
2023-06-30 05:38:33 -05:00
|
|
|
<ForgotPasswordPage {...props}/>
|
|
|
|
</Theme>);
|
|
|
|
};
|
|
|
|
|
2023-10-23 07:13:17 -05:00
|
|
|
it('basic', ()=>{
|
2023-06-30 05:38:33 -05:00
|
|
|
const ctrl = ctrlMount({
|
|
|
|
actionUrl: '/forgot/url',
|
|
|
|
csrfToken: 'some-token',
|
|
|
|
});
|
2023-10-23 07:13:17 -05:00
|
|
|
expect(ctrl.container.querySelector('form').getAttribute('action')).toBe('/forgot/url');
|
|
|
|
expect(ctrl.container.querySelector('input[name="email"]')).not.toBeNull();
|
2023-06-30 05:38:33 -05:00
|
|
|
});
|
|
|
|
});
|