blob: 95cc5f708c234a174c4308b4f79c2a24a1e58e4f [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.
*/
import {ComponentFixture, TestBed} from '@angular/core/testing';
import {TranslateModule} from '@ngx-translate/core';
import {Component, ViewChild} from '@angular/core';
import {ReactiveFormsModule} from '@angular/forms';
import {NoopAnimationsModule} from '@angular/platform-browser/animations';
import {DetailFormData, ProductDetailFormComponent} from './detail.component';
import {FimsSharedModule} from '../../../../common/common.module';
import {MatInputModule, MatRadioModule, MatSelectModule} from '@angular/material';
describe('Test product detail component', () => {
const validFormData: DetailFormData = {
identifier: 'test',
minimumBalance: '1000',
maximumBalance: '2000',
temporalUnit: 'WEEKS',
description: 'description',
currencyCode: 'USD',
name: 'test',
term: 12
};
const invalidFormData: DetailFormData = {
identifier: 'test',
minimumBalance: '2000',
maximumBalance: '1000',
temporalUnit: 'WEEKS',
description: 'description',
currencyCode: 'USD',
name: 'test',
term: 12
};
let component: TestComponent;
let fixture: ComponentFixture<TestComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
imports: [
TranslateModule.forRoot(),
ReactiveFormsModule,
MatRadioModule,
MatInputModule,
MatSelectModule,
FimsSharedModule,
NoopAnimationsModule
],
declarations: [
TestComponent,
ProductDetailFormComponent
]
});
fixture = TestBed.createComponent(TestComponent);
component = fixture.componentInstance;
});
it('should return same interest form data', () => {
component.formData = validFormData;
fixture.detectChanges();
expect(component.form.formData).toEqual(component.formData);
});
it('should mark form as valid when range is valid', () => {
component.formData = validFormData;
fixture.detectChanges();
expect(component.form.valid).toBeTruthy();
});
it('should mark form as invalid when range is invalid', () => {
component.formData = invalidFormData;
fixture.detectChanges();
expect(component.form.valid).toBeFalsy();
});
});
@Component({
template: '<fims-product-detail-form #form [formData]="formData"></fims-product-detail-form>'
})
class TestComponent {
@ViewChild('form') form: ProductDetailFormComponent;
formData: DetailFormData;
}