META-INF.resources.bower_components.angular-bootstrap-datetimepicker.test.view.de.day.spec.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-bootstrap-date-time-picker Show documentation
Show all versions of jwebmp-bootstrap-date-time-picker Show documentation
The JWebSwing implementation for Bootstrap Date Time Picker
/* globals describe, beforeEach, it, expect, module, inject, jQuery, moment */
/**
* @license angular-bootstrap-datetimepicker
* Copyright 2016 Knight Rider Consulting, Inc. http://www.knightrider.com
* License: MIT
*
* @author Dale "Ducky" Lotts
* @since 7/21/13
*/
describe('current view displayed on the markup', function () {
'use strict'
var element
beforeEach(module('ui.bootstrap.datetimepicker'))
beforeEach(inject(function ($compile, $rootScope) {
moment.locale('de')
$rootScope.date = moment('2013-01-22T00:00:00.000').toDate()
element = $compile(' ')($rootScope)
$rootScope.$digest()
}))
it('should have `.day-view` class', function () {
expect(jQuery('table', element).hasClass('day-view')).toBeTruthy()
})
})
describe('German day view with initial date of 2013-01-22', function () {
'use strict'
var element
beforeEach(module('ui.bootstrap.datetimepicker'))
beforeEach(inject(function ($compile, $rootScope) {
moment.locale('de')
$rootScope.date = moment('2013-01-22T00:00:00.000').toDate()
element = $compile(' ')($rootScope)
$rootScope.$digest()
}))
it('has `.switch` element with a value of 2013-1', function () {
expect(jQuery('.switch', element).text()).toBe('2013-Jan.')
})
it('has 42 `.day` elements', function () {
expect(jQuery('.day', element).length).toBe(42)
})
it('has 1 `.past` elements', function () {
expect(jQuery('.past', element).length).toBe(1)
})
it('has 10 `.future` elements', function () {
expect(jQuery('.future', element).length).toBe(10)
})
it('has 1 `.active` element with a value of 22', function () {
expect(jQuery('.active', element).text()).toBe('22')
})
it('has a `` that contains a sr description set in german', function () {
expect(jQuery('th[class*=left] .sr-only', element).text()).toBe('vorige')
})
it('has a ` ` that contains a sr description set in english', function () {
expect(jQuery('th[class*=right] .sr-only', element).text()).toBe('weiter')
})
})
describe('day with initial date of "2020-01-01T00:00:00.000" and minView="day"', function () {
'use strict'
var rootScope
var element
beforeEach(module('ui.bootstrap.datetimepicker'))
beforeEach(inject(function ($compile, $rootScope) {
rootScope = $rootScope
$rootScope.date = moment('2020-01-01T00:00:00.000').toDate()
element = $compile(' ')($rootScope)
$rootScope.$digest()
}))
it('clicking the 13th `.day` element will set the date value to 2020-01-11T00:00:00.000"', function () {
expect(jQuery('.switch', element).text()).toBe('2020-Jan.')
expect(jQuery('.active', element).length).toBe(1)
expect(jQuery('.day', element).length).toBe(42)
var selectedElement = jQuery(jQuery('.day', element)[13])
selectedElement.trigger('click')
expect(jQuery('.active', element).text()).toBe('12')
expect(rootScope.date).toEqual(moment('2020-01-12T00:00:00.000').toDate())
})
})
describe('day with initial date of "2008-02-01T00:00:00.000" (leap year) and minView="day"', function () {
'use strict'
var rootScope
var element
beforeEach(module('ui.bootstrap.datetimepicker'))
beforeEach(inject(function ($compile, $rootScope) {
rootScope = $rootScope
$rootScope.date = moment('2008-02-01T00:00:00.000').toDate()
element = $compile(' ')($rootScope)
$rootScope.$digest()
}))
it('clicking the 33rd `.day` element will set the date value to 2008-29-11T00:00:00.000"', function () {
expect(jQuery('.switch', element).text()).toBe('2008-Febr.')
expect(jQuery('.active', element).length).toBe(1)
expect(jQuery('.active', element).text()).toBe('1')
expect(jQuery('.day', element).length).toBe(42)
expect(jQuery('.past', element).length).toBe(4)
expect(jQuery('.future', element).length).toBe(9)
var selectedElement = jQuery(jQuery('.day', element)[32])
selectedElement.trigger('click')
expect(jQuery('.active', element).text()).toBe('29')
expect(rootScope.date).toEqual(moment('2008-02-29T00:00:00.000').toDate())
})
})
© 2015 - 2024 Weber Informatics LLC | Privacy Policy