68 lines
2.2 KiB
JavaScript
68 lines
2.2 KiB
JavaScript
// Copyright 2013 The Closure Library Authors. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS-IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
goog.provide('goog.ui.PopupDatePickerTest');
|
|
goog.setTestOnly('goog.ui.PopupDatePickerTest');
|
|
|
|
goog.require('goog.events');
|
|
goog.require('goog.testing.jsunit');
|
|
goog.require('goog.testing.recordFunction');
|
|
goog.require('goog.ui.PopupBase');
|
|
goog.require('goog.ui.PopupDatePicker');
|
|
|
|
var popupDatePicker;
|
|
|
|
function setUp() {
|
|
popupDatePicker = new goog.ui.PopupDatePicker();
|
|
}
|
|
|
|
function tearDown() {
|
|
popupDatePicker.dispose();
|
|
}
|
|
|
|
function testIsVisible() {
|
|
assertFalse(popupDatePicker.isVisible());
|
|
popupDatePicker.createDom();
|
|
assertFalse(popupDatePicker.isVisible());
|
|
popupDatePicker.render();
|
|
assertFalse(popupDatePicker.isVisible());
|
|
popupDatePicker.showPopup(document.body);
|
|
assertTrue(popupDatePicker.isVisible());
|
|
popupDatePicker.hidePopup();
|
|
assertFalse(popupDatePicker.isVisible());
|
|
}
|
|
|
|
function testFiresShowAndHideEvents() {
|
|
var showHandler = goog.testing.recordFunction();
|
|
var hideHandler = goog.testing.recordFunction();
|
|
goog.events.listen(popupDatePicker, goog.ui.PopupBase.EventType.SHOW,
|
|
showHandler);
|
|
goog.events.listen(popupDatePicker, goog.ui.PopupBase.EventType.HIDE,
|
|
hideHandler);
|
|
popupDatePicker.createDom();
|
|
popupDatePicker.render();
|
|
assertEquals(0, showHandler.getCallCount());
|
|
assertEquals(0, hideHandler.getCallCount());
|
|
|
|
popupDatePicker.showPopup(document.body);
|
|
// Bug in goog.ui.Popup: the SHOW event is fired twice.
|
|
assertEquals(2, showHandler.getCallCount());
|
|
assertEquals(0, hideHandler.getCallCount());
|
|
showHandler.reset();
|
|
|
|
popupDatePicker.hidePopup();
|
|
assertEquals(0, showHandler.getCallCount());
|
|
assertEquals(1, hideHandler.getCallCount());
|
|
}
|