forked from springwolf/springwolf-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Are absent Refs springwolf#378
- Loading branch information
Showing
7 changed files
with
215 additions
and
16 deletions.
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
springwolf-ui/src/app/components/channels/channel-main/channel-main.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
import { AsyncApiService } from "../../../service/asyncapi/asyncapi.service"; | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
import { ChannelMainComponent } from "./channel-main.component"; | ||
import { PublisherService } from "../../../service/publisher.service"; | ||
import { MatDivider } from "@angular/material/divider"; | ||
import { MatTab, MatTabGroup, MatTabHeader } from "@angular/material/tabs"; | ||
import { JsonComponent } from "../../json/json.component"; | ||
import { MarkdownModule } from "ngx-markdown"; | ||
|
||
describe("ChannelMainComponent", () => { | ||
let component: ChannelMainComponent; | ||
let fixture: ComponentFixture<ChannelMainComponent>; | ||
|
||
let mockedAsyncApiService = { | ||
getAsyncApi: jest.fn(), | ||
}; | ||
let mockedPublisherService = { | ||
getAsyncApi: jest.fn(), | ||
}; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ | ||
ChannelMainComponent, | ||
JsonComponent, | ||
MatDivider, | ||
MatTabGroup, | ||
MatTab, | ||
MatTabHeader, | ||
], | ||
imports: [MarkdownModule.forRoot()], | ||
providers: [ | ||
{ provide: AsyncApiService, useValue: mockedAsyncApiService }, | ||
{ provide: PublisherService, useValue: mockedPublisherService }, | ||
], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(ChannelMainComponent as any); | ||
component = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it("should create the component", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
30 changes: 30 additions & 0 deletions
30
springwolf-ui/src/app/components/channels/channels.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
import { AsyncApiService } from "../../service/asyncapi/asyncapi.service"; | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
import { ChannelsComponent } from "./channels.component"; | ||
import { MatAccordion } from "@angular/material/expansion"; | ||
|
||
describe("ChannelsComponent", () => { | ||
let component: ChannelsComponent; | ||
let fixture: ComponentFixture<ChannelsComponent>; | ||
|
||
let mockedAsyncApiService = { | ||
getAsyncApi: jest.fn(), | ||
}; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ChannelsComponent, MatAccordion], | ||
providers: [ | ||
{ provide: AsyncApiService, useValue: mockedAsyncApiService }, | ||
], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(ChannelsComponent as any); | ||
component = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it("should create the component", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
23 changes: 23 additions & 0 deletions
23
springwolf-ui/src/app/components/header/header.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
import { MatToolbarModule } from "@angular/material/toolbar"; | ||
import { HeaderComponent } from "./header.component"; | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
|
||
describe("HeaderComponent", () => { | ||
let component: HeaderComponent; | ||
let fixture: ComponentFixture<HeaderComponent>; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [HeaderComponent], | ||
imports: [MatToolbarModule], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(HeaderComponent as any); | ||
component = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it("should create the component", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
47 changes: 47 additions & 0 deletions
47
springwolf-ui/src/app/components/schemas/schema/schema.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
|
||
import { SchemaComponent } from "./schema.component"; | ||
import { SchemaRangeComponent } from "../range/schema-range.component"; | ||
import { MatChipsModule } from "@angular/material/chips"; | ||
import { MarkdownModule } from "ngx-markdown"; | ||
import { Example } from "../../../models/example.model"; | ||
|
||
describe("SchemaComponent", () => { | ||
let component: SchemaComponent; | ||
let fixture: ComponentFixture<SchemaComponent>; | ||
|
||
let mockedSchemaRangeComponent = jest.mock("../range/schema-range.component"); | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [SchemaComponent, SchemaRangeComponent], | ||
imports: [MatChipsModule, MarkdownModule.forRoot()], | ||
providers: [ | ||
{ provide: SchemaRangeComponent, useValue: mockedSchemaRangeComponent }, | ||
], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(SchemaComponent as any); | ||
component = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it("should create the component", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
|
||
it("should render primitive string", async () => { | ||
component.schema = { | ||
title: "String", | ||
type: "string", | ||
example: new Example("string"), | ||
}; | ||
|
||
fixture.detectChanges(); | ||
const compiled = fixture.debugElement.nativeElement; | ||
expect(compiled.querySelector(".type").textContent).toContain("string"); | ||
expect(compiled.querySelector(".example").textContent).toContain( | ||
"example: string" | ||
); | ||
}); | ||
}); |
30 changes: 30 additions & 0 deletions
30
springwolf-ui/src/app/components/schemas/schemas.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
import { SchemasComponent } from "./schemas.component"; | ||
import { AsyncApiService } from "../../service/asyncapi/asyncapi.service"; | ||
import { MatAccordion } from "@angular/material/expansion"; | ||
|
||
describe("SchemasComponent", () => { | ||
let component: SchemasComponent; | ||
let fixture: ComponentFixture<SchemasComponent>; | ||
|
||
let mockedAsyncApiService = { | ||
getAsyncApi: jest.fn(), | ||
}; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [SchemasComponent, MatAccordion], | ||
providers: [ | ||
{ provide: AsyncApiService, useValue: mockedAsyncApiService }, | ||
], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(SchemasComponent as any); | ||
component = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it("should create the component", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
27 changes: 27 additions & 0 deletions
27
springwolf-ui/src/app/components/servers/servers.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
/* SPDX-License-Identifier: Apache-2.0 */ | ||
import { ComponentFixture, TestBed } from "@angular/core/testing"; | ||
import { ServersComponent } from "./servers.component"; | ||
import { AsyncApiService } from "../../service/asyncapi/asyncapi.service"; | ||
|
||
describe("ServerComponent", () => { | ||
let component: ServersComponent; | ||
let fixture: ComponentFixture<ServersComponent>; | ||
|
||
let mockedAsyncApiService!: { getAsyncApi: jest.Mock }; | ||
|
||
beforeEach(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ServersComponent], | ||
providers: [ | ||
{ provide: AsyncApiService, useValue: mockedAsyncApiService }, | ||
], | ||
}).compileComponents(); | ||
|
||
fixture = TestBed.createComponent(ServersComponent as any); | ||
component = fixture.debugElement.componentInstance; | ||
}); | ||
|
||
it("should create the component", () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |