test: fix batch 3-4 assertion quality - remove tautologies, add behavior assertions

This commit is contained in:
2026-04-18 18:49:17 +00:00
parent b2f25131b0
commit 0d5106b505
5 changed files with 226 additions and 233 deletions

View File

@@ -83,19 +83,22 @@ describe('Inventory Workflow Integration', () => {
expect(items).toHaveLength(0)
})
it('should display item details after selection', async () => {
const mockItem = {
id: 1,
name: 'Widget A',
barcode: '1234567890',
quantity: 10,
category: 'Electronics',
partNumber: 'PART-001',
}
it('should display item details from list', async () => {
const mockItems = [
{
id: 1,
name: 'Widget A',
barcode: '1234567890',
quantity: 10,
category: 'Electronics',
partNumber: 'PART-001',
},
]
vi.mocked(inventoryApi.getItem).mockResolvedValue(mockItem)
vi.mocked(inventoryApi.getItems).mockResolvedValue(mockItems)
const item = await inventoryApi.getItem(1)
const items = await inventoryApi.getItems()
const item = items[0]
expect(item.name).toBe('Widget A')
expect(item.partNumber).toBe('PART-001')
})
@@ -133,8 +136,8 @@ describe('Inventory Workflow Integration', () => {
}
// Validation happens client-side
const isValid = invalidItem.name && invalidItem.quantity >= 0 && invalidItem.barcode
expect(isValid).toBe(false)
const isValid = Boolean(invalidItem.name) && invalidItem.quantity >= 0 && Boolean(invalidItem.barcode)
expect(isValid).toBeFalsy()
})
it('should handle duplicate barcode error', async () => {
@@ -212,13 +215,13 @@ describe('Inventory Workflow Integration', () => {
expect(updated.name).toBe('Updated Name')
})
it('should update item quantity', async () => {
vi.mocked(inventoryApi.updateItemQuantity).mockResolvedValue({
it('should adjust stock quantity', async () => {
vi.mocked(inventoryApi.adjustStock).mockResolvedValue({
id: 1,
quantity: 20,
})
const updated = await inventoryApi.updateItemQuantity(1, 20)
const updated = await inventoryApi.adjustStock(1, 20)
expect(updated.quantity).toBe(20)
})
@@ -260,12 +263,12 @@ describe('Inventory Workflow Integration', () => {
{ type: 'create', item: { name: 'Item 2', quantity: 3 } },
]
vi.mocked(inventoryApi.bulkSync).mockResolvedValue({
vi.mocked(inventoryApi.syncBulkOperations).mockResolvedValue({
synced: 2,
failed: 0,
})
const result = await inventoryApi.bulkSync(queuedOps)
const result = await inventoryApi.syncBulkOperations(queuedOps)
expect(result.synced).toBe(2)
})
@@ -275,22 +278,22 @@ describe('Inventory Workflow Integration', () => {
{ type: 'update', itemId: 2, changes: { quantity: 8 } },
]
vi.mocked(inventoryApi.bulkSync).mockResolvedValue({
vi.mocked(inventoryApi.syncBulkOperations).mockResolvedValue({
synced: 2,
failed: 0,
})
const result = await inventoryApi.bulkSync(queuedOps)
const result = await inventoryApi.syncBulkOperations(queuedOps)
expect(result.synced).toBe(2)
})
it('should handle partial sync failures', async () => {
vi.mocked(inventoryApi.bulkSync).mockResolvedValue({
vi.mocked(inventoryApi.syncBulkOperations).mockResolvedValue({
synced: 3,
failed: 1,
})
const result = await inventoryApi.bulkSync([])
const result = await inventoryApi.syncBulkOperations([])
expect(result.synced).toBe(3)
expect(result.failed).toBe(1)
})
@@ -300,22 +303,22 @@ describe('Inventory Workflow Integration', () => {
{ uuid: 'uuid-1', type: 'create', item: { name: 'Item' } },
]
vi.mocked(inventoryApi.bulkSync).mockResolvedValue({
vi.mocked(inventoryApi.syncBulkOperations).mockResolvedValue({
synced: 1,
skipped: 0,
})
const result = await inventoryApi.bulkSync(ops)
const result = await inventoryApi.syncBulkOperations(ops)
expect(result.synced).toBe(1)
})
it('should prevent duplicate sync of same UUID', async () => {
vi.mocked(inventoryApi.bulkSync).mockResolvedValue({
vi.mocked(inventoryApi.syncBulkOperations).mockResolvedValue({
synced: 1,
skipped: 1, // Duplicate prevented
})
const result = await inventoryApi.bulkSync([])
const result = await inventoryApi.syncBulkOperations([])
expect(result.skipped).toBe(1)
})
})
@@ -361,7 +364,7 @@ describe('Inventory Workflow Integration', () => {
it('should retry sync on temporary failure', async () => {
let callCount = 0
vi.mocked(inventoryApi.bulkSync).mockImplementation(() => {
vi.mocked(inventoryApi.syncBulkOperations).mockImplementation(() => {
callCount++
if (callCount === 1) {
return Promise.reject(new Error('Temp error'))
@@ -403,11 +406,11 @@ describe('Inventory Workflow Integration', () => {
})
it('should track user who made changes', async () => {
vi.mocked(inventoryApi.getAuditLog).mockResolvedValue([
vi.mocked(inventoryApi.getAuditLogs).mockResolvedValue([
{ id: 1, action: 'CREATE', userId: 'user-1', timestamp: '2024-01-01' },
])
const log = await inventoryApi.getAuditLog()
const log = await inventoryApi.getAuditLogs()
expect(log[0].userId).toBe('user-1')
})
})