mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	 43258c28fa
			
		
	
	43258c28fa
	
	
	
		
			
			* UI: Part 1 - hds adoption replace <Modal> (#23363) * replace policy-form modal * replace clients/attribution modal * clients/config modal * scope form odal * remove button type * include toolbar to match other example templates * rotate credentials modal * add toolbar button class for hds buttons * transformation-edit modal * add back test selector * add route arg to button! * update link status * fix link-status tests * remove prevent default * update db tests * update tests * use page alert for hcp link status banner * fix scopy button selector * fix sidebar test * change to neutral banner * UI: Part 2 - hds adoption replace <Modal> (#23398) * upgrade HDS library (adds support for snippet containers * cleanup flight icons * replace transit key action modals * re-add deps as devDeps * remove line * address transit tests * UI: Part 3 - hds adoption replace <Modal> (#23415) * cleanup css * cleanup extra type attr * masked input download modal * use Hds::Button in download button" * fix size of modal * tiny icon fix * refactor download button to always render download icon * update tests * UI: Part 3.5 - hds adoption replace <Modal> (#23448) * replication-promote modal * replication component modals * replication add secondary modal * move update text for diff * UI: Part 4 - hds adoption replace <Modal> (#23451) * k8 configure modal * kv delete modal * ldap modals * pki modals * add trash icon * move deps * UI: Part 5 - hds adoption replace <Modal> (#23471) * replace confirmation modals --------- * UI: Part 6 - hds adoption replace <Modal> (#23484) * search select with modal * policy search select modal * replace date dropdown for client dashboard * change padding to top * update policy example args * lolllll test typo wow * update dropdown tests * shamir flow modals! * add one more container * update test selectors * UI: Final hds adoption replace <Modal> cleanup PR (#23522) * search select with modal * policy search select modal * replace date dropdown for client dashboard * change padding to top * update policy example args * lolllll test typo wow * update dropdown tests * shamir flow modals! * add one more container * update test selectors * remove wormhole and modal component * fix selectors * uninstall wormhole * remove shamir-modal-flow class * fix confirm modal test * fix pki and kv test * fix toolbar selector kv * client and download button test * fix-confirmation-modal-padding * fix replication modal tests so relevant modal opens (#23540) * more confirmation modal tests * adds changelog
		
			
				
	
	
		
			169 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
		
			5.5 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright (c) HashiCorp, Inc.
 | |
|  * SPDX-License-Identifier: BUSL-1.1
 | |
|  */
 | |
| 
 | |
| import { module, test } from 'qunit';
 | |
| import sinon from 'sinon';
 | |
| import { setupRenderingTest } from 'ember-qunit';
 | |
| import { click, render } from '@ember/test-helpers';
 | |
| import { hbs } from 'ember-cli-htmlbars';
 | |
| import { ARRAY_OF_MONTHS } from 'core/utils/date-formatters';
 | |
| import timestamp from 'core/utils/timestamp';
 | |
| 
 | |
| const SELECTORS = {
 | |
|   monthDropdown: '[data-test-toggle-month]',
 | |
|   specificMonth: (m) => `[data-test-dropdown-month="${m}"]`,
 | |
|   yearDropdown: '[data-test-toggle-year]',
 | |
|   specificYear: (y) => `[data-test-dropdown-year="${y}"]`,
 | |
|   submitButton: '[data-test-date-dropdown-submit]',
 | |
|   monthOptions: '[data-test-dropdown-month]',
 | |
| };
 | |
| 
 | |
| module('Integration | Component | date-dropdown', function (hooks) {
 | |
|   setupRenderingTest(hooks);
 | |
| 
 | |
|   hooks.before(function () {
 | |
|     sinon.stub(timestamp, 'now').callsFake(() => new Date('2018-04-03T14:15:30'));
 | |
|   });
 | |
|   hooks.after(function () {
 | |
|     timestamp.now.restore();
 | |
|   });
 | |
| 
 | |
|   test('it renders dropdown', async function (assert) {
 | |
|     await render(hbs`
 | |
|       <div class="has-padding-l">
 | |
|         <DateDropdown/>
 | |
|       </div>
 | |
|     `);
 | |
|     assert.dom(SELECTORS.submitButton).hasText('Submit', 'button renders default text');
 | |
|   });
 | |
| 
 | |
|   test('it renders dropdown and selects month and year', async function (assert) {
 | |
|     assert.expect(26);
 | |
|     const parentAction = (args) => {
 | |
|       assert.propEqual(
 | |
|         args,
 | |
|         {
 | |
|           dateType: 'start',
 | |
|           monthIdx: 1,
 | |
|           monthName: 'February',
 | |
|           year: 2016,
 | |
|         },
 | |
|         'sends correct args to parent'
 | |
|       );
 | |
|     };
 | |
|     this.set('parentAction', parentAction);
 | |
| 
 | |
|     await render(hbs`
 | |
|     <div class="has-padding-l">
 | |
|     <DateDropdown
 | |
|       @handleSubmit={{this.parentAction}}
 | |
|       @dateType="start"
 | |
|     />
 | |
|     </div>
 | |
|     `);
 | |
|     assert.dom(SELECTORS.submitButton).isDisabled('button is disabled when no month or year selected');
 | |
| 
 | |
|     await click(SELECTORS.monthDropdown);
 | |
| 
 | |
|     assert.dom(SELECTORS.monthOptions).exists({ count: 12 }, 'dropdown has 12 months');
 | |
|     ARRAY_OF_MONTHS.forEach((month) => {
 | |
|       assert.dom(SELECTORS.specificMonth(month)).hasText(`${month}`, `dropdown includes ${month}`);
 | |
|     });
 | |
| 
 | |
|     await click(SELECTORS.specificMonth('February'));
 | |
|     assert.dom(SELECTORS.monthDropdown).hasText('February', 'dropdown shows selected month');
 | |
|     assert.dom('.ember-basic-dropdown-content').doesNotExist('dropdown closes after selecting month');
 | |
| 
 | |
|     await click(SELECTORS.yearDropdown);
 | |
| 
 | |
|     assert.dom('[data-test-dropdown-year]').exists({ count: 5 }, 'dropdown has 5 years');
 | |
|     for (const year of [2018, 2017, 2016, 2015, 2014]) {
 | |
|       assert.dom(SELECTORS.specificYear(year)).exists();
 | |
|     }
 | |
| 
 | |
|     await click('[data-test-dropdown-year="2016"]');
 | |
|     assert.dom(SELECTORS.yearDropdown).hasText(`2016`, `dropdown shows selected year`);
 | |
|     assert.dom('.ember-basic-dropdown-content').doesNotExist('dropdown closes after selecting year');
 | |
|     assert.dom(SELECTORS.submitButton).isNotDisabled('button enabled when month and year selected');
 | |
| 
 | |
|     await click(SELECTORS.submitButton);
 | |
|   });
 | |
| 
 | |
|   test('selecting month first: current year enabled when current month selected', async function (assert) {
 | |
|     assert.expect(5);
 | |
|     await render(hbs`
 | |
|     <div class="has-padding-l">
 | |
|       <DateDropdown/>
 | |
|     </div>
 | |
|     `);
 | |
|     // select current month
 | |
|     await click(SELECTORS.monthDropdown);
 | |
|     await click(SELECTORS.specificMonth('January'));
 | |
|     await click(SELECTORS.yearDropdown);
 | |
|     // all years should be selectable
 | |
|     for (const year of [2018, 2017, 2016, 2015, 2014]) {
 | |
|       assert.dom(SELECTORS.specificYear(year)).isNotDisabled(`year ${year} is selectable`);
 | |
|     }
 | |
|   });
 | |
| 
 | |
|   test('selecting month first: it disables current year when future months selected', async function (assert) {
 | |
|     assert.expect(5);
 | |
|     await render(hbs`
 | |
|     <div class="has-padding-l">
 | |
|       <DateDropdown/>
 | |
|     </div>
 | |
|     `);
 | |
| 
 | |
|     // select future month
 | |
|     await click(SELECTORS.monthDropdown);
 | |
|     await click(SELECTORS.specificMonth('June'));
 | |
|     await click(SELECTORS.yearDropdown);
 | |
| 
 | |
|     assert.dom(SELECTORS.specificYear(2018)).isDisabled(`current year is disabled`);
 | |
|     // previous years should be selectable
 | |
|     for (const year of [2017, 2016, 2015, 2014]) {
 | |
|       assert.dom(SELECTORS.specificYear(year)).isNotDisabled(`year ${year} is selectable`);
 | |
|     }
 | |
|   });
 | |
| 
 | |
|   test('selecting year first: it disables future months when current year selected', async function (assert) {
 | |
|     assert.expect(12);
 | |
|     await render(hbs`
 | |
|     <div class="has-padding-l">
 | |
|       <DateDropdown/>
 | |
|     </div>
 | |
|     `);
 | |
|     await click(SELECTORS.yearDropdown);
 | |
|     await click(SELECTORS.specificYear(2018));
 | |
|     await click(SELECTORS.monthDropdown);
 | |
| 
 | |
|     const expectedSelectable = ['January', 'February', 'March', 'April'];
 | |
|     ARRAY_OF_MONTHS.forEach((month) => {
 | |
|       if (expectedSelectable.includes(month)) {
 | |
|         assert.dom(SELECTORS.specificMonth(month)).isNotDisabled(`${month} is selectable for current year`);
 | |
|       } else {
 | |
|         assert.dom(SELECTORS.specificMonth(month)).isDisabled(`${month} is disabled for current year`);
 | |
|       }
 | |
|     });
 | |
|   });
 | |
| 
 | |
|   test('selecting year first: it enables all months when past year is selected', async function (assert) {
 | |
|     assert.expect(12);
 | |
|     await render(hbs`
 | |
|     <div class="has-padding-l">
 | |
|       <DateDropdown/>
 | |
|     </div>
 | |
|     `);
 | |
| 
 | |
|     await click(SELECTORS.yearDropdown);
 | |
|     await click(SELECTORS.specificYear(2017));
 | |
|     await click(SELECTORS.monthDropdown);
 | |
| 
 | |
|     ARRAY_OF_MONTHS.forEach((month) => {
 | |
|       assert.dom(SELECTORS.specificMonth(month)).isNotDisabled(`${month} is selectable for previous year`);
 | |
|     });
 | |
|   });
 | |
| });
 |