-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix response list for shared schemas (fixes #177)
- Loading branch information
1 parent
7787738
commit 73bfb18
Showing
3 changed files
with
99 additions
and
1 deletion.
There are no files selected for viewing
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,57 @@ | ||
'use strict'; | ||
|
||
import { Component } from '@angular/core'; | ||
import { | ||
inject, | ||
async, | ||
TestBed, | ||
ComponentFixture | ||
} from '@angular/core/testing'; | ||
|
||
import { getChildDebugElement } from '../../../tests/helpers'; | ||
|
||
|
||
import { ResponsesList } from './responses-list'; | ||
import { SpecManager } from '../../utils/spec-manager'; | ||
|
||
describe('Redoc components', () => { | ||
|
||
describe('MethodsList Component', () => { | ||
let builder; | ||
let component: ResponsesList; | ||
let fixture: ComponentFixture<ResponsesList> | ||
let specMgr; | ||
|
||
beforeEach(async(inject([SpecManager], (_specMgr) => { | ||
specMgr = _specMgr; | ||
}))); | ||
|
||
beforeEach(done => { | ||
specMgr.load('/tests/schemas/responses-list-component.json').then(done, done.fail); | ||
}); | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(ResponsesList); | ||
component = fixture.componentInstance; | ||
}); | ||
|
||
it('should instantiate without errors', () => { | ||
should.exist(component); | ||
}); | ||
|
||
it('should init repsonses list', () => { | ||
component.pointer = '#/paths/~1test1/get/responses'; | ||
fixture.detectChanges(); | ||
should.exist(component.responses); | ||
component.responses.should.be.lengthOf(2); | ||
}); | ||
|
||
it('should not overwrite codes for shared schemas', () => { | ||
component.pointer = '#/paths/~1test1/get/responses'; | ||
fixture.detectChanges(); | ||
let resp1 = component.responses[0]; | ||
let resp2 = component.responses[1]; | ||
resp1.code.should.not.be.equal(resp2.code); | ||
}); | ||
}); | ||
}); |
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
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,41 @@ | ||
{ | ||
"swagger": "2.0", | ||
"info": { | ||
}, | ||
"host": "petstore.swagger.io", | ||
"basePath": "/v2/", | ||
"tags": [{ | ||
"name": "traitTag", | ||
"x-traitTag": true, | ||
"description": "description1" | ||
},{ | ||
"name": "tag1", | ||
"description": "tag1", | ||
}], | ||
"schemes": ["http"], | ||
"paths": { | ||
"/test1": { | ||
"get": { | ||
"responses": { | ||
"200": { | ||
"description": "successful operation", | ||
"schema": { | ||
"$ref": "#/definitions/def1" | ||
} | ||
}, | ||
"201": { | ||
"description": "successful operation", | ||
"schema": { | ||
"$ref": "#/definitions/def1" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"definitions": { | ||
"def1": { | ||
"type": "string" | ||
} | ||
} | ||
} |