mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			75 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			75 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| /* eslint-disable notice/notice */
 | |
| 
 | |
| /**
 | |
|  * In this script, we will login and run a few tests that use GitHub API.
 | |
|  *
 | |
|  * Steps summary
 | |
|  * 1. Create a new repo.
 | |
|  * 2. Run tests that programmatically create new issues.
 | |
|  * 3. Delete the repo.
 | |
|  */
 | |
| 
 | |
| import { test, expect } from '@playwright/test';
 | |
| 
 | |
| const user = process.env.GITHUB_USER;
 | |
| const repo = 'Test-Repo-1';
 | |
| 
 | |
| test.use({
 | |
|   baseURL: 'https://api.github.com',
 | |
|   extraHTTPHeaders: {
 | |
|     'Accept': 'application/vnd.github.v3+json',
 | |
|     // Add authorization token to all requests.
 | |
|     'Authorization': `token ${process.env.API_TOKEN}`,
 | |
|   }
 | |
| });
 | |
| 
 | |
| test.beforeAll(async ({ request }) => {
 | |
|   // Create repo
 | |
|   const response = await request.post('/user/repos', {
 | |
|     data: {
 | |
|       name: repo
 | |
|     }
 | |
|   });
 | |
|   expect(response.ok()).toBeTruthy();
 | |
| });
 | |
| 
 | |
| test.afterAll(async ({ request }) => {
 | |
|   // Delete repo
 | |
|   const response = await request.delete(`/repos/${user}/${repo}`);
 | |
|   expect(response.ok()).toBeTruthy();
 | |
| });
 | |
| 
 | |
| test('should create bug report', async ({ request }) => {
 | |
|   const newIssue = await request.post(`/repos/${user}/${repo}/issues`, {
 | |
|     data: {
 | |
|       title: '[Bug] report 1',
 | |
|       body: 'Bug description',
 | |
|     }
 | |
|   });
 | |
|   expect(newIssue.ok()).toBeTruthy();
 | |
| 
 | |
|   const issues = await request.get(`/repos/${user}/${repo}/issues`);
 | |
|   expect(issues.ok()).toBeTruthy();
 | |
|   expect(await issues.json()).toContainEqual(expect.objectContaining({
 | |
|     title: '[Bug] report 1',
 | |
|     body: 'Bug description'
 | |
|   }));
 | |
| });
 | |
| 
 | |
| test('should create feature request', async ({ request }) => {
 | |
|   const newIssue = await request.post(`/repos/${user}/${repo}/issues`, {
 | |
|     data: {
 | |
|       title: '[Feature] request 1',
 | |
|       body: 'Feature description',
 | |
|     }
 | |
|   });
 | |
|   expect(newIssue.ok()).toBeTruthy();
 | |
| 
 | |
|   const issues = await request.get(`/repos/${user}/${repo}/issues`);
 | |
|   expect(issues.ok()).toBeTruthy();
 | |
|   expect(await issues.json()).toContainEqual(expect.objectContaining({
 | |
|     title: '[Feature] request 1',
 | |
|     body: 'Feature description'
 | |
|   }));
 | |
| });
 | 
