* Add ESLint config and update Prettier * Update test files * Rebuild action * Update docs * Update licenses * Update tsconfig * Rebuild action * Update tsconfig.json * Fix console.time calls * Rebuild action * Rebuild action on Linux
		
			
				
	
	
		
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			56 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import * as path from 'path';
 | |
| import * as io from '@actions/io';
 | |
| import * as exec from '@actions/exec';
 | |
| import * as gpg from '../src/gpg';
 | |
| 
 | |
| jest.mock('@actions/exec', () => {
 | |
|   return {
 | |
|     exec: jest.fn()
 | |
|   };
 | |
| });
 | |
| 
 | |
| const tempDir = path.join(__dirname, 'runner', 'temp');
 | |
| process.env['RUNNER_TEMP'] = tempDir;
 | |
| 
 | |
| describe('gpg tests', () => {
 | |
|   beforeEach(async () => {
 | |
|     await io.mkdirP(tempDir);
 | |
|   });
 | |
| 
 | |
|   afterAll(async () => {
 | |
|     try {
 | |
|       await io.rmRF(tempDir);
 | |
|     } catch {
 | |
|       console.log('Failed to remove test directories');
 | |
|     }
 | |
|   });
 | |
| 
 | |
|   describe('importKey', () => {
 | |
|     it('attempts to import private key and returns null key id on failure', async () => {
 | |
|       const privateKey = 'KEY CONTENTS';
 | |
|       const keyId = await gpg.importKey(privateKey);
 | |
| 
 | |
|       expect(keyId).toBeNull();
 | |
| 
 | |
|       expect(exec.exec).toHaveBeenCalledWith(
 | |
|         'gpg',
 | |
|         expect.anything(),
 | |
|         expect.anything()
 | |
|       );
 | |
|     });
 | |
|   });
 | |
| 
 | |
|   describe('deleteKey', () => {
 | |
|     it('deletes private key', async () => {
 | |
|       const keyId = 'asdfhjkl';
 | |
|       await gpg.deleteKey(keyId);
 | |
| 
 | |
|       expect(exec.exec).toHaveBeenCalledWith(
 | |
|         'gpg',
 | |
|         expect.anything(),
 | |
|         expect.anything()
 | |
|       );
 | |
|     });
 | |
|   });
 | |
| });
 |