mirror of
				https://hub.gitmirror.com/https://github.com/actions/setup-java.git
				synced 2025-10-28 08:29:58 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import path = require('path');
 | |
| import io = require('@actions/io');
 | |
| import exec = require('@actions/exec');
 | |
| 
 | |
| jest.mock('@actions/exec', () => {
 | |
|   return {
 | |
|     exec: jest.fn()
 | |
|   };
 | |
| });
 | |
| 
 | |
| const tempDir = path.join(__dirname, 'runner', 'temp');
 | |
| process.env['RUNNER_TEMP'] = tempDir;
 | |
| 
 | |
| import gpg = require('../src/gpg');
 | |
| 
 | |
| describe('gpg tests', () => {
 | |
|   beforeEach(async () => {
 | |
|     await io.mkdirP(tempDir);
 | |
|   }, 300000);
 | |
| 
 | |
|   afterAll(async () => {
 | |
|     try {
 | |
|       await io.rmRF(tempDir);
 | |
|     } catch {
 | |
|       console.log('Failed to remove test directories');
 | |
|     }
 | |
|   }, 100000);
 | |
| 
 | |
|   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()
 | |
|       );
 | |
|     });
 | |
|   });
 | |
| });
 | 
