本文整理匯總了TypeScript中angular.IHttpBackendService.expectGET方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript IHttpBackendService.expectGET方法的具體用法?TypeScript IHttpBackendService.expectGET怎麽用?TypeScript IHttpBackendService.expectGET使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類angular.IHttpBackendService
的用法示例。
在下文中一共展示了IHttpBackendService.expectGET方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('should reject the promise if a 429 response is received', () => {
const url = [SETTINGS.gateUrl, 'applications', 'deck', 'pipelines?limit=3&expand=false'].join('/');
$httpBackend.expectGET(url).respond(429, []);
const responsePromise = executionService.getExecutions('deck');
$httpBackend.flush();
responsePromise
.then(result => {
expect(result).toBeUndefined();
})
.catch(result => {
expect(result).toBeDefined(); // only reject should be called
});
});
示例2: it
it('should retrieve a list of running builds', () => {
const repoType = 'r_rt';
const projectKey = 'r_pk';
const repoSlug = 'r_rs';
$http.expectGET(`${CI_BUILD_URL}?repoType=${repoType}&projectKey=${projectKey}&repoSlug=${repoSlug}&completionStatus=INCOMPLETE`)
.respond(200, {data: [getBuild(), getBuild('buildId', 'INCOMPLETE')]});
let result: ICiBuild[] = null;
ciBuildReader.getRunningBuilds(repoType, projectKey, repoSlug).then((builds: ICiBuild[]) => result = builds);
$http.flush();
expect(result.length).toBe(2);
result.forEach((build: ICiBuild) => {
expect(build.startTime).toBe(build.startedAt);
expect(build.endTime).toBe(build.completedAt);
expect(build.isRunning).toBe(build.completionStatus === 'INCOMPLETE');
expect(build.runningTimeInMs).toBeDefined();
})
});
示例3: it
it('should resolve the promise if a 200 response is received with empty array', () => {
const url = [SETTINGS.gateUrl, 'applications', 'deck', 'pipelines?limit=3&expand=false'].join('/');
$httpBackend.expectGET(url).respond(200, []);
const responsePromise = executionService.getExecutions('deck');
$httpBackend.flush();
responsePromise
.then(result => {
expect(result).toBeDefined(); // only success should be called
expect(result).toEqual([]);
})
.catch(reject => {
expect(reject).toBeUndefined();
});
});
示例4: it
it ('returns file contents with lastUpdated', () => {
let result: IWhatsNewContents = null;
const response: IGistApiResponse = {
'updated_at': '1999',
files: {},
};
response.files[NetflixSettings.whatsNew.fileName] = {
content: 'expected content',
};
$http.expectGET(url).respond(200, response);
reader.getWhatsNewContents().then((data: IWhatsNewContents) => result = data);
$http.flush();
expect(result).not.toBeNull();
expect(result.lastUpdated).toBe('1999');
expect(result.contents).toBe('expected content');
});
示例5: it
it('returns file contents with lastUpdated', () => {
let result: IWhatsNewContents = null;
const response: IGistApiResponse = {
updated_at: '1999',
files: {},
};
response.files[SETTINGS.changelog.fileName] = {
content: 'expected content',
};
$http.expectGET(url).respond(200, response);
WhatsNewReader.getWhatsNewContents().then(data => (result = data));
$http.flush();
expect(result).not.toBeNull();
expect(result.lastUpdated).toBe('1999');
expect(result.contents).toBe('expected content');
});