|
| 1 | +import { WebApi } from 'azure-devops-node-api'; |
| 2 | +import { manageWorkItemLink } from './feature'; |
| 3 | +import { createWorkItem } from '../create-work-item/feature'; |
| 4 | +import { |
| 5 | + getTestConnection, |
| 6 | + shouldSkipIntegrationTest, |
| 7 | +} from '../../../shared/test/test-helpers'; |
| 8 | +import { CreateWorkItemOptions } from '../types'; |
| 9 | + |
| 10 | +// Note: These tests will be skipped in CI due to missing credentials |
| 11 | +// They are meant to be run manually in a dev environment with proper Azure DevOps setup |
| 12 | +describe('manageWorkItemLink integration', () => { |
| 13 | + let connection: WebApi | null = null; |
| 14 | + let projectName: string; |
| 15 | + let sourceWorkItemId: number | null = null; |
| 16 | + let targetWorkItemId: number | null = null; |
| 17 | + |
| 18 | + beforeAll(async () => { |
| 19 | + // Get a real connection using environment variables |
| 20 | + connection = await getTestConnection(); |
| 21 | + projectName = process.env.AZURE_DEVOPS_DEFAULT_PROJECT || 'DefaultProject'; |
| 22 | + |
| 23 | + // Skip setup if integration tests should be skipped |
| 24 | + if (shouldSkipIntegrationTest() || !connection) { |
| 25 | + return; |
| 26 | + } |
| 27 | + |
| 28 | + try { |
| 29 | + // Create source work item for link tests |
| 30 | + const sourceOptions: CreateWorkItemOptions = { |
| 31 | + title: `Source Work Item for Link Tests ${new Date().toISOString()}`, |
| 32 | + description: |
| 33 | + 'Source work item for integration tests of manage-work-item-link', |
| 34 | + }; |
| 35 | + |
| 36 | + const sourceWorkItem = await createWorkItem( |
| 37 | + connection, |
| 38 | + projectName, |
| 39 | + 'Task', |
| 40 | + sourceOptions, |
| 41 | + ); |
| 42 | + |
| 43 | + // Create target work item for link tests |
| 44 | + const targetOptions: CreateWorkItemOptions = { |
| 45 | + title: `Target Work Item for Link Tests ${new Date().toISOString()}`, |
| 46 | + description: |
| 47 | + 'Target work item for integration tests of manage-work-item-link', |
| 48 | + }; |
| 49 | + |
| 50 | + const targetWorkItem = await createWorkItem( |
| 51 | + connection, |
| 52 | + projectName, |
| 53 | + 'Task', |
| 54 | + targetOptions, |
| 55 | + ); |
| 56 | + |
| 57 | + // Store the work item IDs for the tests |
| 58 | + if (sourceWorkItem && sourceWorkItem.id !== undefined) { |
| 59 | + sourceWorkItemId = sourceWorkItem.id; |
| 60 | + } |
| 61 | + if (targetWorkItem && targetWorkItem.id !== undefined) { |
| 62 | + targetWorkItemId = targetWorkItem.id; |
| 63 | + } |
| 64 | + } catch (error) { |
| 65 | + console.error('Failed to create work items for link tests:', error); |
| 66 | + } |
| 67 | + }); |
| 68 | + |
| 69 | + test('should add a link between two existing work items', async () => { |
| 70 | + // Skip if integration tests should be skipped or if work items weren't created |
| 71 | + if ( |
| 72 | + shouldSkipIntegrationTest() || |
| 73 | + !connection || |
| 74 | + !sourceWorkItemId || |
| 75 | + !targetWorkItemId |
| 76 | + ) { |
| 77 | + return; |
| 78 | + } |
| 79 | + |
| 80 | + // Act & Assert - should not throw |
| 81 | + const result = await manageWorkItemLink(connection, projectName, { |
| 82 | + sourceWorkItemId, |
| 83 | + targetWorkItemId, |
| 84 | + operation: 'add', |
| 85 | + relationType: 'System.LinkTypes.Related', |
| 86 | + comment: 'Link created by integration test', |
| 87 | + }); |
| 88 | + |
| 89 | + // Assert |
| 90 | + expect(result).toBeDefined(); |
| 91 | + expect(result.id).toBe(sourceWorkItemId); |
| 92 | + }); |
| 93 | + |
| 94 | + test('should handle non-existent work items gracefully', async () => { |
| 95 | + // Skip if integration tests should be skipped or if no connection |
| 96 | + if (shouldSkipIntegrationTest() || !connection) { |
| 97 | + return; |
| 98 | + } |
| 99 | + |
| 100 | + // Use a very large ID that's unlikely to exist |
| 101 | + const nonExistentId = 999999999; |
| 102 | + |
| 103 | + // Act & Assert - should throw an error for non-existent work item |
| 104 | + await expect( |
| 105 | + manageWorkItemLink(connection, projectName, { |
| 106 | + sourceWorkItemId: nonExistentId, |
| 107 | + targetWorkItemId: nonExistentId, |
| 108 | + operation: 'add', |
| 109 | + relationType: 'System.LinkTypes.Related', |
| 110 | + }), |
| 111 | + ).rejects.toThrow(/[Ww]ork [Ii]tem.*not found|does not exist/); |
| 112 | + }); |
| 113 | + |
| 114 | + test('should handle non-existent relationship types gracefully', async () => { |
| 115 | + // Skip if integration tests should be skipped or if work items weren't created |
| 116 | + if ( |
| 117 | + shouldSkipIntegrationTest() || |
| 118 | + !connection || |
| 119 | + !sourceWorkItemId || |
| 120 | + !targetWorkItemId |
| 121 | + ) { |
| 122 | + return; |
| 123 | + } |
| 124 | + |
| 125 | + // Act & Assert - should throw an error for non-existent relation type |
| 126 | + await expect( |
| 127 | + manageWorkItemLink(connection, projectName, { |
| 128 | + sourceWorkItemId, |
| 129 | + targetWorkItemId, |
| 130 | + operation: 'add', |
| 131 | + relationType: 'NonExistentLinkType', |
| 132 | + }), |
| 133 | + ).rejects.toThrow(/[Rr]elation|[Ll]ink|[Tt]ype/); // Error may vary, but should mention relation/link/type |
| 134 | + }); |
| 135 | +}); |
0 commit comments