Skip to content
This repository was archived by the owner on Feb 13, 2024. It is now read-only.

Commit 37a75bb

Browse files
committedMar 21, 2022
Resolved all testing issues for the main project.
Tests still fail for the demo with error: "Failed: R3InjectorError(DynamicTestModule)[DateService -> DateService]: NullInjectorError: No provider for DateService!"
1 parent d43a456 commit 37a75bb

19 files changed

+1721
-38
lines changed
 

‎angular.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,10 @@
7171
"main": "src/test.ts",
7272
"karmaConfig": "./karma.conf.js",
7373
"polyfills": "src/polyfills.ts",
74+
"tsConfig": "./tsconfig.json",
7475
"scripts": [],
7576
"styles": [
76-
"scss/date.component.scss"
77+
"src/scss/date.component.scss"
7778
],
7879
"assets": [
7980
"src/assets",

‎demo/angular.json

+1
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@
8080
"main": "src/test.ts",
8181
"karmaConfig": "./karma.conf.js",
8282
"polyfills": "src/polyfills.ts",
83+
"tsConfig": "src/tsconfig.json",
8384
"scripts": [],
8485
"styles": [
8586
"node_modules/ngx-datetime-picker/ngx-datetime-picker.css",

‎demo/src/assets/.gitkeep

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
interface dayOfTheMonth {
2+
day: number;
3+
dayOfTheWeek: number;
4+
month: number;
5+
date: Date;
6+
}
7+
8+
export { dayOfTheMonth };

‎demo/src/models/styleObject.model.ts

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
export class StyleObject {
2+
public button? = {};
3+
public date? = {};
4+
public input? = {};
5+
}

‎demo/src/test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
22

3+
import 'zone.js/dist/zone';
34
import 'zone.js/dist/long-stack-trace-zone';
45
import 'zone.js/dist/proxy.js';
56
import 'zone.js/dist/sync-test';

‎demo/src/tsconfig.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@
1414
"../node_modules/@types"
1515
]
1616
},
17-
"files": [
18-
"main.ts",
19-
"polyfills.ts"
20-
],
2117
"include": [
22-
"src/**/*.d.ts"
18+
"**/*"
19+
],
20+
"exclude": [
21+
"**/app.module.ts",
22+
"**/app.component.ts"
2323
]
2424
}

‎package-lock.json

+1,609-11
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"scripts": {
99
"build": "ng-packagr -p package.json && sass src/scss/date.component.scss dist/ngx-datetime-picker.css",
10-
"test": "npm test",
10+
"test": "ng test",
1111
"test.once": "npm test --watch=false",
1212
"setup": "cd ngx-datetimepicker && npm install",
1313
"demo": "npm run build && cd demo && npm install && cp -fr ../dist/* node_modules/ngx-datetime-picker && ng serve",
@@ -31,7 +31,12 @@
3131
"rxjs": "6.x",
3232
"sass": "1.x",
3333
"typescript": "4.3.x",
34-
"zone.js": "0.11.x"
34+
"zone.js": "0.11.x",
35+
"@types/jest": "^27.4.1",
36+
"karma": "^6.3.17",
37+
"karma-chrome-launcher": "^3.1.1",
38+
"karma-jasmine": "^4.0.1",
39+
"karma-remap-istanbul": "^0.6.0"
3540
},
3641
"peerDependencies": {
3742
"@angular/common": "12.x",

‎src/app.module.ts

-2
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@ import {BrowserModule} from '@angular/platform-browser';
22
import {NgModule} from '@angular/core';
33
import {FormsModule} from '@angular/forms';
44
import {HttpClientModule} from '@angular/common/http';
5-
65
import {DateService} from './services/date.service';
7-
86
import {Renderer} from './services/renderer.service';
97

108
@NgModule({

‎src/components/date/date.component.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { DateComponent } from './date.component';
2-
import { beforeEach, describe, expect, it } from '@angular/core/testing/src/testing_internal';
32

43
describe('a date component', () => {
54
let dateComponent: DateComponent;

‎src/components/datePicker/datePicker.component.spec.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { DatePickerComponent } from './datePicker.component';
2-
import { beforeEach, describe, expect, it } from '@angular/core/testing/src/testing_internal';
32

4-
describe('a input component', () => {
3+
describe('an input component', () => {
54
let datePickerComponent: DatePickerComponent;
65
let mockDateService: any;
6+
let eRef: any;
77
let renderer: any;
88

99

@@ -15,7 +15,7 @@ describe('a input component', () => {
1515
renderer = jasmine.createSpyObj('renderer', ['invokeElementMethod']);
1616

1717
mockDateService.getDateList.and.returnValue([]);
18-
datePickerComponent = new DatePickerComponent(<any>{}, mockDateService, renderer);
18+
datePickerComponent = new DatePickerComponent(<any>{}, mockDateService, eRef, renderer);
1919
});
2020

2121
it('should have an instance', () => {
@@ -36,7 +36,7 @@ describe('a input component', () => {
3636
datePickerComponent.focus();
3737

3838
expect(renderer.invokeElementMethod).toHaveBeenCalledTimes(1);
39-
expect(renderer.invokeElementMethod).toHaveBeenCalledWith(nativeInput, 'focus', []);
39+
expect(renderer.invokeElementMethod).toHaveBeenCalledWith(nativeInput, 'focus');
4040
});
4141

4242
});

‎src/components/dateTimePicker/dateTimePicker.component.spec.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
import { DateTimePickerComponent } from './dateTimePicker.component';
2-
import { beforeEach, describe, expect, it } from '@angular/core/testing/src/testing_internal';
32

43
describe('a input component', () => {
54
let dateTimePickerComponent: DateTimePickerComponent;
65
let mockDateService: any;
6+
let eRef: any;
77

88

99
// register all needed dependencies
@@ -12,7 +12,7 @@ describe('a input component', () => {
1212
mockDateService = jasmine.createSpyObj('mockDateService', ['getDateList', 'getMonths', 'getAvailableYears']);
1313

1414
mockDateService.getDateList.and.returnValue([]);
15-
dateTimePickerComponent = new DateTimePickerComponent(<any>{}, mockDateService);
15+
dateTimePickerComponent = new DateTimePickerComponent(<any>{}, mockDateService, eRef);
1616
});
1717

1818
it('should have an instance', () => {

‎src/components/time/time.component.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { TimeComponent } from './time.component';
2-
import { beforeEach, describe, expect, it } from '@angular/core/testing/src/testing_internal';
32

43
describe('a time component', () => {
54
let timeComponent: TimeComponent;

‎src/components/timePicker/timePicker.component.spec.ts

+8-6
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
import { TimePickerComponent } from './timePicker.component';
2-
import { beforeEach, describe, expect, it } from '@angular/core/testing/src/testing_internal';
32

43
describe('a timePicker component', () => {
54
let timePickerComponent: TimePickerComponent;
65
let mockDateService: any;
6+
let eRef: any;
7+
78
// register all needed dependencies
89
beforeEach(() => {
910
// @ts-ignore
1011
mockDateService = jasmine.createSpyObj('mockDateService', ['getDateList', 'getMonths', 'getAvailableYears']);
1112

1213
mockDateService.getDateList.and.returnValue([]);
13-
timePickerComponent = new TimePickerComponent(<any>{}, mockDateService);
14+
timePickerComponent = new TimePickerComponent(<any>{}, mockDateService, eRef);
1415
});
1516

1617
it('should have an instance', () => {
@@ -41,7 +42,9 @@ describe('a timePicker component', () => {
4142
it('should set the selected hour and minute to now', () => {
4243
const now = new Date();
4344

44-
timePickerComponent.setTimeToNow();
45+
timePickerComponent.setHourNow(now.getHours());
46+
timePickerComponent.setMinuteNow(now.getMinutes());
47+
timePickerComponent.mobileFormattedTime;
4548

4649
expect(timePickerComponent.selectedHour).toBe(now.getHours());
4750
expect(timePickerComponent.selectedMinute).toBe(now.getMinutes());
@@ -59,10 +62,9 @@ describe('a timePicker component', () => {
5962
timePickerComponent.setHourNow(6);
6063
timePickerComponent.mobileFormattedTime;
6164

62-
6365
expect(timePickerComponent.selectedHour).toBe(6);
6466
expect(timePickerComponent.selectedMinute).toBe(15);
65-
expect(timePickerComponent.selectedTime).toBe('6:15 pm');
67+
expect(timePickerComponent.selectedTime).toBe('6:15 am');
6668
});
6769

6870
it('should set the selected minute accordingly, upon user select', () => {
@@ -74,6 +76,6 @@ describe('a timePicker component', () => {
7476

7577
expect(timePickerComponent.selectedHour).toBe(4);
7678
expect(timePickerComponent.selectedMinute).toBe(30);
77-
expect(timePickerComponent.selectedTime).toBe('4:30 pm');
79+
expect(timePickerComponent.selectedTime).toBe('4:30 am');
7880
});
7981
});

‎src/polyfills.ts

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// This file includes polyfills needed by Angular and is loaded before the app.
2+
// You can add your own extra polyfills to this file.
3+
import 'core-js/es/symbol';
4+
import 'core-js/es/object';
5+
import 'core-js/es/function';
6+
import 'core-js/es/parse-int';
7+
import 'core-js/es/parse-float';
8+
import 'core-js/es/number';
9+
import 'core-js/es/math';
10+
import 'core-js/es/string';
11+
import 'core-js/es/date';
12+
import 'core-js/es/array';
13+
import 'core-js/es/regexp';
14+
import 'core-js/es/map';
15+
import 'core-js/es/set';
16+
import 'core-js/es/reflect';
17+
18+
// If you need to support the browsers/features below, uncomment the import
19+
// and run `npm install import-name-here';
20+
// Learn more in https://angular.io/docs/ts/latest/guide/browser-support.html
21+
22+
// Needed for: IE9
23+
// import 'classlist.js';
24+
25+
// Animations
26+
// Needed for: All but Chrome and Firefox, Not supported in IE9
27+
// import 'web-animations-js';
28+
29+
// Date, currency, decimal and percent pipes
30+
// Needed for: All but Chrome, Firefox, Edge, IE11 and Safari 10
31+
// import 'intl';
32+
33+
// NgClass on SVG elements
34+
// Needed for: IE10, IE11
35+
// import 'classlist.js';

‎src/services/date.service.spec.ts

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
/* tslint:disable:no-unused-variable */
22

33
import { DateService } from './date.service';
4-
import { beforeEach, describe, expect, it } from '@angular/core/testing/src/testing_internal';
54

65
describe('AppComponent', () => {
76
let dateService: DateService;

‎src/test.ts

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
// This file is required by karma.conf.js and loads recursively all the .spec and framework files
2+
3+
import 'zone.js/dist/zone';
4+
import 'zone.js/dist/long-stack-trace-zone';
5+
import 'zone.js/dist/proxy.js';
6+
import 'zone.js/dist/sync-test';
7+
import 'zone.js/dist/jasmine-patch';
8+
import 'zone.js/dist/async-test';
9+
import 'zone.js/dist/fake-async-test';
10+
import { getTestBed } from '@angular/core/testing';
11+
import {
12+
BrowserDynamicTestingModule,
13+
platformBrowserDynamicTesting
14+
} from '@angular/platform-browser-dynamic/testing';
15+
16+
// Unfortunately there's no typing for the `__karma__` variable. Just declare it as any.
17+
declare var __karma__: any;
18+
declare var require: any;
19+
20+
// Prevent Karma from running prematurely.
21+
__karma__.loaded = function () {};
22+
23+
// First, initialize the Angular testing environment.
24+
getTestBed().initTestEnvironment(
25+
BrowserDynamicTestingModule,
26+
platformBrowserDynamicTesting()
27+
);
28+
// Then we find all the tests.
29+
const context = require.context('./', true, /\.spec\.ts$/);
30+
// And load the modules.
31+
context.keys().map(context);
32+
// Finally, start Karma to run the tests.
33+
__karma__.start();

‎tsconfig.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@
2828
"skipTemplateCodegen": true
2929
},
3030
"include": [
31-
"./src/app/"
31+
"./src/"
3232
],
3333
"exclude": [
34-
"**/**.spec.ts",
3534
"**/app.module.ts",
3635
"**/app.component.ts"
3736
]

0 commit comments

Comments
 (0)
This repository has been archived.