view data tests
This commit is contained in:
@@ -0,0 +1,408 @@
|
|||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
import { AdminUser } from '@core/admin/domain/entities/AdminUser';
|
||||||
|
import { AdminUserOrmEntity } from '../entities/AdminUserOrmEntity';
|
||||||
|
import { AdminUserOrmMapper } from './AdminUserOrmMapper';
|
||||||
|
import { TypeOrmAdminSchemaError } from '../errors/TypeOrmAdminSchemaError';
|
||||||
|
|
||||||
|
describe('AdminUserOrmMapper', () => {
|
||||||
|
describe('TDD - Test First', () => {
|
||||||
|
describe('toDomain', () => {
|
||||||
|
it('should map valid ORM entity to domain entity', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['owner'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const domain = mapper.toDomain(entity);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(domain.id.value).toBe('user-123');
|
||||||
|
expect(domain.email.value).toBe('test@example.com');
|
||||||
|
expect(domain.displayName).toBe('Test User');
|
||||||
|
expect(domain.roles).toHaveLength(1);
|
||||||
|
expect(domain.roles[0]!.value).toBe('owner');
|
||||||
|
expect(domain.status.value).toBe('active');
|
||||||
|
expect(domain.createdAt).toEqual(new Date('2024-01-01'));
|
||||||
|
expect(domain.updatedAt).toEqual(new Date('2024-01-02'));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should map entity with optional fields', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
entity.primaryDriverId = 'driver-456';
|
||||||
|
entity.lastLoginAt = new Date('2024-01-03');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const domain = mapper.toDomain(entity);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(domain.primaryDriverId).toBe('driver-456');
|
||||||
|
expect(domain.lastLoginAt).toEqual(new Date('2024-01-03'));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle null optional fields', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
entity.primaryDriverId = null;
|
||||||
|
entity.lastLoginAt = null;
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const domain = mapper.toDomain(entity);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(domain.primaryDriverId).toBeUndefined();
|
||||||
|
expect(domain.lastLoginAt).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for missing id', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = '';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field id must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for missing email', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = '';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field email must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for missing displayName', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = '';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field displayName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for invalid roles array', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = null as unknown as string[];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field roles must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for invalid roles array items', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user', 123 as unknown as string];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field roles must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for missing status', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = '';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field status must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for invalid createdAt', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('invalid') as unknown as Date;
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field createdAt must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for invalid updatedAt', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('invalid') as unknown as Date;
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field updatedAt must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for invalid primaryDriverId type', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
entity.primaryDriverId = 123 as unknown as string;
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field primaryDriverId must be a string or undefined');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error for invalid lastLoginAt type', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['user'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
entity.lastLoginAt = 'invalid' as unknown as Date;
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act & Assert
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => mapper.toDomain(entity)).toThrow('Field lastLoginAt must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle multiple roles', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['owner', 'admin'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const domain = mapper.toDomain(entity);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(domain.roles).toHaveLength(2);
|
||||||
|
expect(domain.roles.map(r => r.value)).toContain('owner');
|
||||||
|
expect(domain.roles.map(r => r.value)).toContain('admin');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('toOrmEntity', () => {
|
||||||
|
it('should map domain entity to ORM entity', () => {
|
||||||
|
// Arrange
|
||||||
|
const domain = AdminUser.create({
|
||||||
|
id: 'user-123',
|
||||||
|
email: 'test@example.com',
|
||||||
|
displayName: 'Test User',
|
||||||
|
roles: ['owner'],
|
||||||
|
status: 'active',
|
||||||
|
createdAt: new Date('2024-01-01'),
|
||||||
|
updatedAt: new Date('2024-01-02'),
|
||||||
|
});
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const entity = mapper.toOrmEntity(domain);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(entity.id).toBe('user-123');
|
||||||
|
expect(entity.email).toBe('test@example.com');
|
||||||
|
expect(entity.displayName).toBe('Test User');
|
||||||
|
expect(entity.roles).toEqual(['owner']);
|
||||||
|
expect(entity.status).toBe('active');
|
||||||
|
expect(entity.createdAt).toEqual(new Date('2024-01-01'));
|
||||||
|
expect(entity.updatedAt).toEqual(new Date('2024-01-02'));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should map domain entity with optional fields', () => {
|
||||||
|
// Arrange
|
||||||
|
const domain = AdminUser.create({
|
||||||
|
id: 'user-123',
|
||||||
|
email: 'test@example.com',
|
||||||
|
displayName: 'Test User',
|
||||||
|
roles: ['user'],
|
||||||
|
status: 'active',
|
||||||
|
createdAt: new Date('2024-01-01'),
|
||||||
|
updatedAt: new Date('2024-01-02'),
|
||||||
|
primaryDriverId: 'driver-456',
|
||||||
|
lastLoginAt: new Date('2024-01-03'),
|
||||||
|
});
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const entity = mapper.toOrmEntity(domain);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(entity.primaryDriverId).toBe('driver-456');
|
||||||
|
expect(entity.lastLoginAt).toEqual(new Date('2024-01-03'));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle domain entity without optional fields', () => {
|
||||||
|
// Arrange
|
||||||
|
const domain = AdminUser.create({
|
||||||
|
id: 'user-123',
|
||||||
|
email: 'test@example.com',
|
||||||
|
displayName: 'Test User',
|
||||||
|
roles: ['user'],
|
||||||
|
status: 'active',
|
||||||
|
createdAt: new Date('2024-01-01'),
|
||||||
|
updatedAt: new Date('2024-01-02'),
|
||||||
|
});
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const entity = mapper.toOrmEntity(domain);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(entity.primaryDriverId).toBeUndefined();
|
||||||
|
expect(entity.lastLoginAt).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should map domain entity with multiple roles', () => {
|
||||||
|
// Arrange
|
||||||
|
const domain = AdminUser.create({
|
||||||
|
id: 'user-123',
|
||||||
|
email: 'test@example.com',
|
||||||
|
displayName: 'Test User',
|
||||||
|
roles: ['owner', 'admin'],
|
||||||
|
status: 'active',
|
||||||
|
createdAt: new Date('2024-01-01'),
|
||||||
|
updatedAt: new Date('2024-01-02'),
|
||||||
|
});
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const entity = mapper.toOrmEntity(domain);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(entity.roles).toEqual(['owner', 'admin']);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('toStored', () => {
|
||||||
|
it('should call toDomain for stored entity', () => {
|
||||||
|
// Arrange
|
||||||
|
const entity = new AdminUserOrmEntity();
|
||||||
|
entity.id = 'user-123';
|
||||||
|
entity.email = 'test@example.com';
|
||||||
|
entity.displayName = 'Test User';
|
||||||
|
entity.roles = ['owner'];
|
||||||
|
entity.status = 'active';
|
||||||
|
entity.createdAt = new Date('2024-01-01');
|
||||||
|
entity.updatedAt = new Date('2024-01-02');
|
||||||
|
|
||||||
|
const mapper = new AdminUserOrmMapper();
|
||||||
|
|
||||||
|
// Act
|
||||||
|
const domain = mapper.toStored(entity);
|
||||||
|
|
||||||
|
// Assert
|
||||||
|
expect(domain.id.value).toBe('user-123');
|
||||||
|
expect(domain.email.value).toBe('test@example.com');
|
||||||
|
expect(domain.displayName).toBe('Test User');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,253 @@
|
|||||||
|
import { describe, expect, it } from 'vitest';
|
||||||
|
import {
|
||||||
|
assertNonEmptyString,
|
||||||
|
assertStringArray,
|
||||||
|
assertDate,
|
||||||
|
assertOptionalDate,
|
||||||
|
assertOptionalString,
|
||||||
|
} from './TypeOrmAdminSchemaGuards';
|
||||||
|
import { TypeOrmAdminSchemaError } from '../errors/TypeOrmAdminSchemaError';
|
||||||
|
|
||||||
|
describe('TypeOrmAdminSchemaGuards', () => {
|
||||||
|
describe('TDD - Test First', () => {
|
||||||
|
describe('assertNonEmptyString', () => {
|
||||||
|
it('should not throw for valid non-empty string', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', 'valid string')).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for empty string', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', '')).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', '')).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for string with only whitespace', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', ' ')).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', ' ')).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for null', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', null)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', null)).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for undefined', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', undefined)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', undefined)).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for number', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', 123)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', 123)).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for object', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', {})).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', {})).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for array', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', [])).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertNonEmptyString('TestEntity', 'fieldName', [])).toThrow('Field fieldName must be a non-empty string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should include entity name in error message', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertNonEmptyString('AdminUser', 'email', '')).toThrow('[TypeOrmAdminSchemaError] AdminUser.email: INVALID_STRING - Field email must be a non-empty string');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('assertStringArray', () => {
|
||||||
|
it('should not throw for valid string array', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', 'b', 'c'])).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not throw for empty array', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', [])).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for non-array', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', 'not an array')).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', 'not an array')).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for null', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', null)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', null)).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for undefined', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', undefined)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', undefined)).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for array with non-string items', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', 123, 'c'])).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', 123, 'c'])).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for array with null items', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', null, 'c'])).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', null, 'c'])).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for array with undefined items', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', undefined, 'c'])).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', undefined, 'c'])).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for array with object items', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', {}, 'c'])).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertStringArray('TestEntity', 'fieldName', ['a', {}, 'c'])).toThrow('Field fieldName must be an array of strings');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should include entity name in error message', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertStringArray('AdminUser', 'roles', null)).toThrow('[TypeOrmAdminSchemaError] AdminUser.roles: INVALID_STRING_ARRAY - Field roles must be an array of strings');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('assertDate', () => {
|
||||||
|
it('should not throw for valid Date', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', new Date())).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not throw for Date with valid timestamp', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', new Date('2024-01-01'))).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for null', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', null)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', null)).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for undefined', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', undefined)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', undefined)).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for string', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', '2024-01-01')).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', '2024-01-01')).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for number', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', 1234567890)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', 1234567890)).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for object', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', {})).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', {})).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for invalid Date (NaN)', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', new Date('invalid'))).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertDate('TestEntity', 'fieldName', new Date('invalid'))).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should include entity name in error message', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertDate('AdminUser', 'createdAt', null)).toThrow('[TypeOrmAdminSchemaError] AdminUser.createdAt: INVALID_DATE - Field createdAt must be a valid Date');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('assertOptionalDate', () => {
|
||||||
|
it('should not throw for valid Date', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', new Date())).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not throw for null', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', null)).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not throw for undefined', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', undefined)).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for invalid Date', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', new Date('invalid'))).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', new Date('invalid'))).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for string', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', '2024-01-01')).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertOptionalDate('TestEntity', 'fieldName', '2024-01-01')).toThrow('Field fieldName must be a valid Date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should include entity name in error message', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalDate('AdminUser', 'lastLoginAt', new Date('invalid'))).toThrow('[TypeOrmAdminSchemaError] AdminUser.lastLoginAt: INVALID_DATE - Field lastLoginAt must be a valid Date');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('assertOptionalString', () => {
|
||||||
|
it('should not throw for valid string', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', 'valid string')).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not throw for null', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', null)).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not throw for undefined', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', undefined)).not.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for number', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', 123)).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', 123)).toThrow('Field fieldName must be a string or undefined');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for object', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', {})).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', {})).toThrow('Field fieldName must be a string or undefined');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw for array', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', [])).toThrow(TypeOrmAdminSchemaError);
|
||||||
|
expect(() => assertOptionalString('TestEntity', 'fieldName', [])).toThrow('Field fieldName must be a string or undefined');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should include entity name in error message', () => {
|
||||||
|
// Arrange & Act & Assert
|
||||||
|
expect(() => assertOptionalString('AdminUser', 'primaryDriverId', 123)).toThrow('[TypeOrmAdminSchemaError] AdminUser.primaryDriverId: INVALID_OPTIONAL_STRING - Field primaryDriverId must be a string or undefined');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
116
core/eslint-rules/domain-no-application.test.js
Normal file
116
core/eslint-rules/domain-no-application.test.js
Normal file
@@ -0,0 +1,116 @@
|
|||||||
|
const { RuleTester } = require('eslint');
|
||||||
|
const rule = require('./domain-no-application');
|
||||||
|
|
||||||
|
const ruleTester = new RuleTester({
|
||||||
|
parser: require.resolve('@typescript-eslint/parser'),
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: 2020,
|
||||||
|
sourceType: 'module',
|
||||||
|
ecmaFeatures: {
|
||||||
|
jsx: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
ruleTester.run('domain-no-application', rule, {
|
||||||
|
valid: [
|
||||||
|
// Domain file importing from domain
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { UserId } from './UserId';",
|
||||||
|
},
|
||||||
|
// Domain file importing from shared
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { ValueObject } from '../shared/ValueObject';",
|
||||||
|
},
|
||||||
|
// Domain file importing from ports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { UserRepository } from '../ports/UserRepository';",
|
||||||
|
},
|
||||||
|
// Non-domain file importing from application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/application/user/CreateUser.ts',
|
||||||
|
code: "import { CreateUserCommand } from './CreateUserCommand';",
|
||||||
|
},
|
||||||
|
// Non-domain file importing from application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/application/user/CreateUser.ts',
|
||||||
|
code: "import { UserService } from '../services/UserService';",
|
||||||
|
},
|
||||||
|
// Domain file with no imports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "export class User {}",
|
||||||
|
},
|
||||||
|
// Domain file with multiple imports, none from application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: `
|
||||||
|
import { UserId } from './UserId';
|
||||||
|
import { UserName } from './UserName';
|
||||||
|
import { ValueObject } from '../shared/ValueObject';
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
invalid: [
|
||||||
|
// Domain file importing from application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { CreateUserCommand } from '../application/user/CreateUserCommand';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'forbiddenImport',
|
||||||
|
data: {
|
||||||
|
source: '../application/user/CreateUserCommand',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Domain file importing from application with different path
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { UserService } from '../../application/services/UserService';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'forbiddenImport',
|
||||||
|
data: {
|
||||||
|
source: '../../application/services/UserService',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Domain file importing from application with absolute path
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { CreateUserCommand } from 'core/application/user/CreateUserCommand';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'forbiddenImport',
|
||||||
|
data: {
|
||||||
|
source: 'core/application/user/CreateUserCommand',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Domain file with multiple imports, one from application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: `
|
||||||
|
import { UserId } from './UserId';
|
||||||
|
import { CreateUserCommand } from '../application/user/CreateUserCommand';
|
||||||
|
import { UserName } from './UserName';
|
||||||
|
`,
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'forbiddenImport',
|
||||||
|
data: {
|
||||||
|
source: '../application/user/CreateUserCommand',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
79
core/eslint-rules/index.test.js
Normal file
79
core/eslint-rules/index.test.js
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
const index = require('./index');
|
||||||
|
|
||||||
|
describe('eslint-rules index', () => {
|
||||||
|
describe('rules', () => {
|
||||||
|
it('should export no-index-files rule', () => {
|
||||||
|
expect(index.rules['no-index-files']).toBeDefined();
|
||||||
|
expect(index.rules['no-index-files'].meta).toBeDefined();
|
||||||
|
expect(index.rules['no-index-files'].create).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should export no-framework-imports rule', () => {
|
||||||
|
expect(index.rules['no-framework-imports']).toBeDefined();
|
||||||
|
expect(index.rules['no-framework-imports'].meta).toBeDefined();
|
||||||
|
expect(index.rules['no-framework-imports'].create).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should export domain-no-application rule', () => {
|
||||||
|
expect(index.rules['domain-no-application']).toBeDefined();
|
||||||
|
expect(index.rules['domain-no-application'].meta).toBeDefined();
|
||||||
|
expect(index.rules['domain-no-application'].create).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have exactly 3 rules', () => {
|
||||||
|
expect(Object.keys(index.rules)).toHaveLength(3);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('configs', () => {
|
||||||
|
it('should export recommended config', () => {
|
||||||
|
expect(index.configs.recommended).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('recommended config should have gridpilot-core-rules plugin', () => {
|
||||||
|
expect(index.configs.recommended.plugins).toContain('gridpilot-core-rules');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('recommended config should enable all rules', () => {
|
||||||
|
expect(index.configs.recommended.rules['gridpilot-core-rules/no-index-files']).toBe('error');
|
||||||
|
expect(index.configs.recommended.rules['gridpilot-core-rules/no-framework-imports']).toBe('error');
|
||||||
|
expect(index.configs.recommended.rules['gridpilot-core-rules/domain-no-application']).toBe('error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('recommended config should have exactly 3 rules', () => {
|
||||||
|
expect(Object.keys(index.configs.recommended.rules)).toHaveLength(3);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('rule metadata', () => {
|
||||||
|
it('no-index-files should have correct metadata', () => {
|
||||||
|
const rule = index.rules['no-index-files'];
|
||||||
|
expect(rule.meta.type).toBe('problem');
|
||||||
|
expect(rule.meta.docs.category).toBe('Best Practices');
|
||||||
|
expect(rule.meta.docs.recommended).toBe(true);
|
||||||
|
expect(rule.meta.fixable).toBe(null);
|
||||||
|
expect(rule.meta.schema).toEqual([]);
|
||||||
|
expect(rule.meta.messages.indexFile).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('no-framework-imports should have correct metadata', () => {
|
||||||
|
const rule = index.rules['no-framework-imports'];
|
||||||
|
expect(rule.meta.type).toBe('problem');
|
||||||
|
expect(rule.meta.docs.category).toBe('Architecture');
|
||||||
|
expect(rule.meta.docs.recommended).toBe(true);
|
||||||
|
expect(rule.meta.fixable).toBe(null);
|
||||||
|
expect(rule.meta.schema).toEqual([]);
|
||||||
|
expect(rule.meta.messages.frameworkImport).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('domain-no-application should have correct metadata', () => {
|
||||||
|
const rule = index.rules['domain-no-application'];
|
||||||
|
expect(rule.meta.type).toBe('problem');
|
||||||
|
expect(rule.meta.docs.category).toBe('Architecture');
|
||||||
|
expect(rule.meta.docs.recommended).toBe(true);
|
||||||
|
expect(rule.meta.fixable).toBe(null);
|
||||||
|
expect(rule.meta.schema).toEqual([]);
|
||||||
|
expect(rule.meta.messages.forbiddenImport).toBeDefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
166
core/eslint-rules/no-framework-imports.test.js
Normal file
166
core/eslint-rules/no-framework-imports.test.js
Normal file
@@ -0,0 +1,166 @@
|
|||||||
|
const { RuleTester } = require('eslint');
|
||||||
|
const rule = require('./no-framework-imports');
|
||||||
|
|
||||||
|
const ruleTester = new RuleTester({
|
||||||
|
parser: require.resolve('@typescript-eslint/parser'),
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: 2020,
|
||||||
|
sourceType: 'module',
|
||||||
|
ecmaFeatures: {
|
||||||
|
jsx: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
ruleTester.run('no-framework-imports', rule, {
|
||||||
|
valid: [
|
||||||
|
// Import from domain
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { UserId } from './UserId';",
|
||||||
|
},
|
||||||
|
// Import from application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/application/user/CreateUser.ts',
|
||||||
|
code: "import { CreateUserCommand } from './CreateUserCommand';",
|
||||||
|
},
|
||||||
|
// Import from shared
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/shared/ValueObject.ts',
|
||||||
|
code: "import { ValueObject } from './ValueObject';",
|
||||||
|
},
|
||||||
|
// Import from ports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/ports/UserRepository.ts',
|
||||||
|
code: "import { User } from '../domain/user/User';",
|
||||||
|
},
|
||||||
|
// Import from external packages (not frameworks)
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { v4 as uuidv4 } from 'uuid';",
|
||||||
|
},
|
||||||
|
// Import from internal packages
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { SomeUtil } from '@core/shared/SomeUtil';",
|
||||||
|
},
|
||||||
|
// No imports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "export class User {}",
|
||||||
|
},
|
||||||
|
// Multiple valid imports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: `
|
||||||
|
import { UserId } from './UserId';
|
||||||
|
import { UserName } from './UserName';
|
||||||
|
import { ValueObject } from '../shared/ValueObject';
|
||||||
|
`,
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
invalid: [
|
||||||
|
// Import from @nestjs
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { Injectable } from '@nestjs/common';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: '@nestjs/common',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Import from @nestjs/core
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { Module } from '@nestjs/core';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: '@nestjs/core',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Import from express
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import express from 'express';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: 'express',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Import from react
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import React from 'react';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: 'react',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Import from next
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { useRouter } from 'next/router';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: 'next/router',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Import from @nestjs with subpath
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "import { Controller } from '@nestjs/common';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: '@nestjs/common',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// Multiple framework imports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: `
|
||||||
|
import { Injectable } from '@nestjs/common';
|
||||||
|
import { UserId } from './UserId';
|
||||||
|
import React from 'react';
|
||||||
|
`,
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: '@nestjs/common',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
messageId: 'frameworkImport',
|
||||||
|
data: {
|
||||||
|
source: 'react',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
131
core/eslint-rules/no-index-files.test.js
Normal file
131
core/eslint-rules/no-index-files.test.js
Normal file
@@ -0,0 +1,131 @@
|
|||||||
|
const { RuleTester } = require('eslint');
|
||||||
|
const rule = require('./no-index-files');
|
||||||
|
|
||||||
|
const ruleTester = new RuleTester({
|
||||||
|
parser: require.resolve('@typescript-eslint/parser'),
|
||||||
|
parserOptions: {
|
||||||
|
ecmaVersion: 2020,
|
||||||
|
sourceType: 'module',
|
||||||
|
ecmaFeatures: {
|
||||||
|
jsx: false,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
ruleTester.run('no-index-files', rule, {
|
||||||
|
valid: [
|
||||||
|
// Regular file in domain
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/User.ts',
|
||||||
|
code: "export class User {}",
|
||||||
|
},
|
||||||
|
// Regular file in application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/application/user/CreateUser.ts',
|
||||||
|
code: "export class CreateUser {}",
|
||||||
|
},
|
||||||
|
// Regular file in shared
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/shared/ValueObject.ts',
|
||||||
|
code: "export class ValueObject {}",
|
||||||
|
},
|
||||||
|
// Regular file in ports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/ports/UserRepository.ts',
|
||||||
|
code: "export interface UserRepository {}",
|
||||||
|
},
|
||||||
|
// File with index in the middle of the path
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/index/User.ts',
|
||||||
|
code: "export class User {}",
|
||||||
|
},
|
||||||
|
// File with index in the name but not at the end
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/indexHelper.ts',
|
||||||
|
code: "export class IndexHelper {}",
|
||||||
|
},
|
||||||
|
// Root index.ts is allowed
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/index.ts',
|
||||||
|
code: "export * from './domain';",
|
||||||
|
},
|
||||||
|
// File with index.ts in the middle of the path
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/index/User.ts',
|
||||||
|
code: "export class User {}",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
|
||||||
|
invalid: [
|
||||||
|
// index.ts in domain
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/index.ts',
|
||||||
|
code: "export * from './User';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// index.ts in application
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/application/user/index.ts',
|
||||||
|
code: "export * from './CreateUser';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// index.ts in shared
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/shared/index.ts',
|
||||||
|
code: "export * from './ValueObject';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// index.ts in ports
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/ports/index.ts',
|
||||||
|
code: "export * from './UserRepository';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// index.ts with Windows path separator
|
||||||
|
{
|
||||||
|
filename: 'C:\\path\\to\\core\\domain\\user\\index.ts',
|
||||||
|
code: "export * from './User';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// index.ts at the start of path
|
||||||
|
{
|
||||||
|
filename: 'index.ts',
|
||||||
|
code: "export * from './domain';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// index.ts in nested directory
|
||||||
|
{
|
||||||
|
filename: '/path/to/core/domain/user/profile/index.ts',
|
||||||
|
code: "export * from './Profile';",
|
||||||
|
errors: [
|
||||||
|
{
|
||||||
|
messageId: 'indexFile',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
@@ -0,0 +1,160 @@
|
|||||||
|
/**
|
||||||
|
* Application Query Tests: GetUserRatingLedgerQuery
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
||||||
|
import { GetUserRatingLedgerQueryHandler } from './GetUserRatingLedgerQuery';
|
||||||
|
import { RatingEventRepository } from '../../domain/repositories/RatingEventRepository';
|
||||||
|
|
||||||
|
// Mock repository
|
||||||
|
const createMockRepository = () => ({
|
||||||
|
save: vi.fn(),
|
||||||
|
findByUserId: vi.fn(),
|
||||||
|
findByIds: vi.fn(),
|
||||||
|
getAllByUserId: vi.fn(),
|
||||||
|
findEventsPaginated: vi.fn(),
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('GetUserRatingLedgerQueryHandler', () => {
|
||||||
|
let handler: GetUserRatingLedgerQueryHandler;
|
||||||
|
let mockRepository: ReturnType<typeof createMockRepository>;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
mockRepository = createMockRepository();
|
||||||
|
handler = new GetUserRatingLedgerQueryHandler(mockRepository as unknown as RatingEventRepository);
|
||||||
|
vi.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should query repository with default pagination', async () => {
|
||||||
|
mockRepository.findEventsPaginated.mockResolvedValue({
|
||||||
|
items: [],
|
||||||
|
total: 0,
|
||||||
|
limit: 20,
|
||||||
|
offset: 0,
|
||||||
|
hasMore: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
await handler.execute({ userId: 'user-1' });
|
||||||
|
|
||||||
|
expect(mockRepository.findEventsPaginated).toHaveBeenCalledWith('user-1', {
|
||||||
|
limit: 20,
|
||||||
|
offset: 0,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should query repository with custom pagination', async () => {
|
||||||
|
mockRepository.findEventsPaginated.mockResolvedValue({
|
||||||
|
items: [],
|
||||||
|
total: 0,
|
||||||
|
limit: 50,
|
||||||
|
offset: 100,
|
||||||
|
hasMore: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
await handler.execute({
|
||||||
|
userId: 'user-1',
|
||||||
|
limit: 50,
|
||||||
|
offset: 100,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockRepository.findEventsPaginated).toHaveBeenCalledWith('user-1', {
|
||||||
|
limit: 50,
|
||||||
|
offset: 100,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should query repository with filters', async () => {
|
||||||
|
mockRepository.findEventsPaginated.mockResolvedValue({
|
||||||
|
items: [],
|
||||||
|
total: 0,
|
||||||
|
limit: 20,
|
||||||
|
offset: 0,
|
||||||
|
hasMore: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const filter: any = {
|
||||||
|
dimensions: ['trust'],
|
||||||
|
sourceTypes: ['vote'],
|
||||||
|
from: '2026-01-01T00:00:00Z',
|
||||||
|
to: '2026-01-31T23:59:59Z',
|
||||||
|
reasonCodes: ['VOTE_POSITIVE'],
|
||||||
|
};
|
||||||
|
|
||||||
|
await handler.execute({
|
||||||
|
userId: 'user-1',
|
||||||
|
filter,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockRepository.findEventsPaginated).toHaveBeenCalledWith('user-1', {
|
||||||
|
limit: 20,
|
||||||
|
offset: 0,
|
||||||
|
filter: {
|
||||||
|
dimensions: ['trust'],
|
||||||
|
sourceTypes: ['vote'],
|
||||||
|
from: new Date('2026-01-01T00:00:00Z'),
|
||||||
|
to: new Date('2026-01-31T23:59:59Z'),
|
||||||
|
reasonCodes: ['VOTE_POSITIVE'],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should map domain entities to DTOs', async () => {
|
||||||
|
const mockEvent = {
|
||||||
|
id: { value: 'event-1' },
|
||||||
|
userId: 'user-1',
|
||||||
|
dimension: { value: 'trust' },
|
||||||
|
delta: { value: 5 },
|
||||||
|
occurredAt: new Date('2026-01-15T12:00:00Z'),
|
||||||
|
createdAt: new Date('2026-01-15T12:00:00Z'),
|
||||||
|
source: 'admin_vote',
|
||||||
|
reason: 'VOTE_POSITIVE',
|
||||||
|
visibility: 'public',
|
||||||
|
weight: 1.0,
|
||||||
|
};
|
||||||
|
|
||||||
|
mockRepository.findEventsPaginated.mockResolvedValue({
|
||||||
|
items: [mockEvent],
|
||||||
|
total: 1,
|
||||||
|
limit: 20,
|
||||||
|
offset: 0,
|
||||||
|
hasMore: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = await handler.execute({ userId: 'user-1' });
|
||||||
|
|
||||||
|
expect(result.entries).toHaveLength(1);
|
||||||
|
expect(result.entries[0]).toEqual({
|
||||||
|
id: 'event-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
dimension: 'trust',
|
||||||
|
delta: 5,
|
||||||
|
occurredAt: '2026-01-15T12:00:00.000Z',
|
||||||
|
createdAt: '2026-01-15T12:00:00.000Z',
|
||||||
|
source: 'admin_vote',
|
||||||
|
reason: 'VOTE_POSITIVE',
|
||||||
|
visibility: 'public',
|
||||||
|
weight: 1.0,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle pagination metadata in result', async () => {
|
||||||
|
mockRepository.findEventsPaginated.mockResolvedValue({
|
||||||
|
items: [],
|
||||||
|
total: 100,
|
||||||
|
limit: 20,
|
||||||
|
offset: 20,
|
||||||
|
hasMore: true,
|
||||||
|
nextOffset: 40,
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = await handler.execute({ userId: 'user-1', limit: 20, offset: 20 });
|
||||||
|
|
||||||
|
expect(result.pagination).toEqual({
|
||||||
|
total: 100,
|
||||||
|
limit: 20,
|
||||||
|
offset: 20,
|
||||||
|
hasMore: true,
|
||||||
|
nextOffset: 40,
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
399
core/identity/application/use-cases/CastAdminVoteUseCase.test.ts
Normal file
399
core/identity/application/use-cases/CastAdminVoteUseCase.test.ts
Normal file
@@ -0,0 +1,399 @@
|
|||||||
|
/**
|
||||||
|
* Application Use Case Tests: CastAdminVoteUseCase
|
||||||
|
*
|
||||||
|
* Tests for casting votes in admin vote sessions
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
||||||
|
import { CastAdminVoteUseCase } from './CastAdminVoteUseCase';
|
||||||
|
import { AdminVoteSessionRepository } from '../../domain/repositories/AdminVoteSessionRepository';
|
||||||
|
import { AdminVoteSession } from '../../domain/entities/AdminVoteSession';
|
||||||
|
|
||||||
|
// Mock repository
|
||||||
|
const createMockRepository = () => ({
|
||||||
|
save: vi.fn(),
|
||||||
|
findById: vi.fn(),
|
||||||
|
findActiveForAdmin: vi.fn(),
|
||||||
|
findByAdminAndLeague: vi.fn(),
|
||||||
|
findByLeague: vi.fn(),
|
||||||
|
findClosedUnprocessed: vi.fn(),
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('CastAdminVoteUseCase', () => {
|
||||||
|
let useCase: CastAdminVoteUseCase;
|
||||||
|
let mockRepository: ReturnType<typeof createMockRepository>;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
mockRepository = createMockRepository();
|
||||||
|
useCase = new CastAdminVoteUseCase(mockRepository);
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Input validation', () => {
|
||||||
|
it('should reject when voteSessionId is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: '',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('voteSessionId is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when voterId is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: '',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('voterId is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when positive is not a boolean', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: 'true' as any,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('positive must be a boolean value');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when votedAt is not a valid date', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
votedAt: 'invalid-date',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('votedAt must be a valid date if provided');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should accept valid input with all fields', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue({
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
votedAt: '2024-01-01T00:00:00Z',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(result.errors).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should accept valid input without optional votedAt', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue({
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
});
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(result.errors).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Session lookup', () => {
|
||||||
|
it('should reject when vote session is not found', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue(null);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'non-existent-session',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Vote session not found');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should find session by ID when provided', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockRepository.findById).toHaveBeenCalledWith('session-123');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Voting window validation', () => {
|
||||||
|
it('should reject when voting window is not open', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(false),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Vote session is not open for voting');
|
||||||
|
expect(mockSession.isVotingWindowOpen).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should accept when voting window is open', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(mockSession.isVotingWindowOpen).toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should use current time when votedAt is not provided', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockSession.isVotingWindowOpen).toHaveBeenCalledWith(expect.any(Date));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should use provided votedAt when available', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
const votedAt = new Date('2024-01-01T12:00:00Z');
|
||||||
|
await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
votedAt: votedAt.toISOString(),
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockSession.isVotingWindowOpen).toHaveBeenCalledWith(votedAt);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Vote casting', () => {
|
||||||
|
it('should cast positive vote when session is open', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockSession.castVote).toHaveBeenCalledWith('voter-123', true, expect.any(Date));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should cast negative vote when session is open', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockSession.castVote).toHaveBeenCalledWith('voter-123', false, expect.any(Date));
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should save updated session after casting vote', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(mockRepository.save).toHaveBeenCalledWith(mockSession);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return success when vote is cast', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(result.voteSessionId).toBe('session-123');
|
||||||
|
expect(result.voterId).toBe('voter-123');
|
||||||
|
expect(result.errors).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Error handling', () => {
|
||||||
|
it('should handle repository errors gracefully', async () => {
|
||||||
|
mockRepository.findById.mockRejectedValue(new Error('Database error'));
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Failed to cast vote: Database error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle unexpected errors gracefully', async () => {
|
||||||
|
mockRepository.findById.mockRejectedValue('Unknown error');
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Failed to cast vote: Unknown error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle save errors gracefully', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
mockRepository.save.mockRejectedValue(new Error('Save failed'));
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Failed to cast vote: Save failed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Return values', () => {
|
||||||
|
it('should return voteSessionId in success response', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.voteSessionId).toBe('session-123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return voterId in success response', async () => {
|
||||||
|
const mockSession = {
|
||||||
|
id: 'session-123',
|
||||||
|
isVotingWindowOpen: vi.fn().mockReturnValue(true),
|
||||||
|
castVote: vi.fn(),
|
||||||
|
};
|
||||||
|
mockRepository.findById.mockResolvedValue(mockSession);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.voterId).toBe('voter-123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return voteSessionId in error response', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue(null);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.voteSessionId).toBe('session-123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should return voterId in error response', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue(null);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-123',
|
||||||
|
voterId: 'voter-123',
|
||||||
|
positive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.voterId).toBe('voter-123');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,251 @@
|
|||||||
|
/**
|
||||||
|
* Application Use Case Tests: OpenAdminVoteSessionUseCase
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect, vi, beforeEach } from 'vitest';
|
||||||
|
import { OpenAdminVoteSessionUseCase } from './OpenAdminVoteSessionUseCase';
|
||||||
|
import { AdminVoteSessionRepository } from '../../domain/repositories/AdminVoteSessionRepository';
|
||||||
|
import { AdminVoteSession } from '../../domain/entities/AdminVoteSession';
|
||||||
|
|
||||||
|
// Mock repository
|
||||||
|
const createMockRepository = () => ({
|
||||||
|
save: vi.fn(),
|
||||||
|
findById: vi.fn(),
|
||||||
|
findActiveForAdmin: vi.fn(),
|
||||||
|
findByAdminAndLeague: vi.fn(),
|
||||||
|
findByLeague: vi.fn(),
|
||||||
|
findClosedUnprocessed: vi.fn(),
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('OpenAdminVoteSessionUseCase', () => {
|
||||||
|
let useCase: OpenAdminVoteSessionUseCase;
|
||||||
|
let mockRepository: ReturnType<typeof createMockRepository>;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
mockRepository = createMockRepository();
|
||||||
|
useCase = new OpenAdminVoteSessionUseCase(mockRepository as unknown as AdminVoteSessionRepository);
|
||||||
|
vi.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Input validation', () => {
|
||||||
|
it('should reject when voteSessionId is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: '',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('voteSessionId is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when leagueId is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: '',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('leagueId is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when adminId is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: '',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('adminId is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when startDate is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('startDate is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when endDate is missing', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('endDate is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when startDate is invalid', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: 'invalid-date',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('startDate must be a valid date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when endDate is invalid', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: 'invalid-date',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('endDate must be a valid date');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when startDate is after endDate', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-07',
|
||||||
|
endDate: '2026-01-01',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('startDate must be before endDate');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when eligibleVoters is empty', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: [],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('At least one eligible voter is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when eligibleVoters has duplicates', async () => {
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1', 'voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Duplicate eligible voters are not allowed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Business rules', () => {
|
||||||
|
it('should reject when session ID already exists', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue({ id: 'session-1' } as any);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Vote session with this ID already exists');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject when there is an overlapping active session', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue(null);
|
||||||
|
mockRepository.findActiveForAdmin.mockResolvedValue([
|
||||||
|
{
|
||||||
|
startDate: new Date('2026-01-05'),
|
||||||
|
endDate: new Date('2026-01-10'),
|
||||||
|
}
|
||||||
|
] as any);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors).toContain('Active vote session already exists for this admin in this league with overlapping dates');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create and save a new session when valid', async () => {
|
||||||
|
mockRepository.findById.mockResolvedValue(null);
|
||||||
|
mockRepository.findActiveForAdmin.mockResolvedValue([]);
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1', 'voter-2'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
expect(mockRepository.save).toHaveBeenCalled();
|
||||||
|
const savedSession = mockRepository.save.mock.calls[0][0];
|
||||||
|
expect(savedSession).toBeInstanceOf(AdminVoteSession);
|
||||||
|
expect(savedSession.id).toBe('session-1');
|
||||||
|
expect(savedSession.leagueId).toBe('league-1');
|
||||||
|
expect(savedSession.adminId).toBe('admin-1');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Error handling', () => {
|
||||||
|
it('should handle repository errors gracefully', async () => {
|
||||||
|
mockRepository.findById.mockRejectedValue(new Error('Database error'));
|
||||||
|
|
||||||
|
const result = await useCase.execute({
|
||||||
|
voteSessionId: 'session-1',
|
||||||
|
leagueId: 'league-1',
|
||||||
|
adminId: 'admin-1',
|
||||||
|
startDate: '2026-01-01',
|
||||||
|
endDate: '2026-01-07',
|
||||||
|
eligibleVoters: ['voter-1'],
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
expect(result.errors?.[0]).toContain('Failed to open vote session: Database error');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
241
core/identity/domain/entities/Company.test.ts
Normal file
241
core/identity/domain/entities/Company.test.ts
Normal file
@@ -0,0 +1,241 @@
|
|||||||
|
/**
|
||||||
|
* Domain Entity Tests: Company
|
||||||
|
*
|
||||||
|
* Tests for Company entity business rules and invariants
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect } from 'vitest';
|
||||||
|
import { Company } from './Company';
|
||||||
|
import { UserId } from '../value-objects/UserId';
|
||||||
|
|
||||||
|
describe('Company', () => {
|
||||||
|
describe('Creation', () => {
|
||||||
|
it('should create a company with valid properties', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const company = Company.create({
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: userId,
|
||||||
|
contactEmail: 'contact@acme.com',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getName()).toBe('Acme Racing Team');
|
||||||
|
expect(company.getOwnerUserId()).toEqual(userId);
|
||||||
|
expect(company.getContactEmail()).toBe('contact@acme.com');
|
||||||
|
expect(company.getId()).toBeDefined();
|
||||||
|
expect(company.getCreatedAt()).toBeInstanceOf(Date);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create a company without optional contact email', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const company = Company.create({
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getContactEmail()).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should generate unique IDs for different companies', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const company1 = Company.create({
|
||||||
|
name: 'Team A',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
const company2 = Company.create({
|
||||||
|
name: 'Team B',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company1.getId()).not.toBe(company2.getId());
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Rehydration', () => {
|
||||||
|
it('should rehydrate company from stored data', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const createdAt = new Date('2024-01-01');
|
||||||
|
|
||||||
|
const company = Company.rehydrate({
|
||||||
|
id: 'comp-123',
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: 'user-123',
|
||||||
|
contactEmail: 'contact@acme.com',
|
||||||
|
createdAt,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getId()).toBe('comp-123');
|
||||||
|
expect(company.getName()).toBe('Acme Racing Team');
|
||||||
|
expect(company.getOwnerUserId()).toEqual(userId);
|
||||||
|
expect(company.getContactEmail()).toBe('contact@acme.com');
|
||||||
|
expect(company.getCreatedAt()).toEqual(createdAt);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should rehydrate company without contact email', () => {
|
||||||
|
const createdAt = new Date('2024-01-01');
|
||||||
|
|
||||||
|
const company = Company.rehydrate({
|
||||||
|
id: 'comp-123',
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: 'user-123',
|
||||||
|
createdAt,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getContactEmail()).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Validation', () => {
|
||||||
|
it('should throw error when company name is empty', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
expect(() => {
|
||||||
|
Company.create({
|
||||||
|
name: '',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
}).toThrow('Company name cannot be empty');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error when company name is only whitespace', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
expect(() => {
|
||||||
|
Company.create({
|
||||||
|
name: ' ',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
}).toThrow('Company name cannot be empty');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error when company name is too short', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
expect(() => {
|
||||||
|
Company.create({
|
||||||
|
name: 'A',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
}).toThrow('Company name must be at least 2 characters long');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should throw error when company name is too long', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const longName = 'A'.repeat(101);
|
||||||
|
|
||||||
|
expect(() => {
|
||||||
|
Company.create({
|
||||||
|
name: longName,
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
}).toThrow('Company name must be no more than 100 characters');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should accept company name with exactly 2 characters', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
const company = Company.create({
|
||||||
|
name: 'AB',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getName()).toBe('AB');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should accept company name with exactly 100 characters', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const longName = 'A'.repeat(100);
|
||||||
|
|
||||||
|
const company = Company.create({
|
||||||
|
name: longName,
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getName()).toBe(longName);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should trim whitespace from company name during validation', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
const company = Company.create({
|
||||||
|
name: ' Acme Racing Team ',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
// Note: The current implementation doesn't trim, it just validates
|
||||||
|
// So this test documents the current behavior
|
||||||
|
expect(company.getName()).toBe(' Acme Racing Team ');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Business Rules', () => {
|
||||||
|
it('should maintain immutability of properties', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
const company = Company.create({
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: userId,
|
||||||
|
contactEmail: 'contact@acme.com',
|
||||||
|
});
|
||||||
|
|
||||||
|
const originalName = company.getName();
|
||||||
|
const originalEmail = company.getContactEmail();
|
||||||
|
|
||||||
|
// Try to modify (should not work due to readonly properties)
|
||||||
|
// This is more of a TypeScript compile-time check, but we can verify runtime behavior
|
||||||
|
expect(company.getName()).toBe(originalName);
|
||||||
|
expect(company.getContactEmail()).toBe(originalEmail);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle special characters in company name', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
const company = Company.create({
|
||||||
|
name: 'Acme & Sons Racing, LLC',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getName()).toBe('Acme & Sons Racing, LLC');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle unicode characters in company name', () => {
|
||||||
|
const userId = UserId.fromString('user-123');
|
||||||
|
|
||||||
|
const company = Company.create({
|
||||||
|
name: 'Räcing Tëam Ñumber Øne',
|
||||||
|
ownerUserId: userId,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getName()).toBe('Räcing Tëam Ñumber Øne');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Edge Cases', () => {
|
||||||
|
it('should handle rehydration with null contact email', () => {
|
||||||
|
const createdAt = new Date('2024-01-01');
|
||||||
|
|
||||||
|
const company = Company.rehydrate({
|
||||||
|
id: 'comp-123',
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: 'user-123',
|
||||||
|
contactEmail: null as any,
|
||||||
|
createdAt,
|
||||||
|
});
|
||||||
|
|
||||||
|
// The entity stores null as null, not undefined
|
||||||
|
expect(company.getContactEmail()).toBeNull();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle rehydration with undefined contact email', () => {
|
||||||
|
const createdAt = new Date('2024-01-01');
|
||||||
|
|
||||||
|
const company = Company.rehydrate({
|
||||||
|
id: 'comp-123',
|
||||||
|
name: 'Acme Racing Team',
|
||||||
|
ownerUserId: 'user-123',
|
||||||
|
contactEmail: undefined,
|
||||||
|
createdAt,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(company.getContactEmail()).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
221
core/identity/domain/errors/IdentityDomainError.test.ts
Normal file
221
core/identity/domain/errors/IdentityDomainError.test.ts
Normal file
@@ -0,0 +1,221 @@
|
|||||||
|
/**
|
||||||
|
* Domain Error Tests: IdentityDomainError
|
||||||
|
*
|
||||||
|
* Tests for domain error classes and their behavior
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect } from 'vitest';
|
||||||
|
import { IdentityDomainError, IdentityDomainValidationError, IdentityDomainInvariantError } from './IdentityDomainError';
|
||||||
|
|
||||||
|
describe('IdentityDomainError', () => {
|
||||||
|
describe('IdentityDomainError (base class)', () => {
|
||||||
|
it('should create an error with correct properties', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test error message');
|
||||||
|
|
||||||
|
expect(error.message).toBe('Test error message');
|
||||||
|
expect(error.type).toBe('domain');
|
||||||
|
expect(error.context).toBe('identity-domain');
|
||||||
|
expect(error.kind).toBe('validation');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be an instance of Error', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test error');
|
||||||
|
expect(error instanceof Error).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be an instance of IdentityDomainError', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test error');
|
||||||
|
expect(error instanceof IdentityDomainError).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have correct stack trace', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test error');
|
||||||
|
expect(error.stack).toBeDefined();
|
||||||
|
expect(error.stack).toContain('IdentityDomainError');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle empty error message', () => {
|
||||||
|
const error = new IdentityDomainValidationError('');
|
||||||
|
expect(error.message).toBe('');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle error message with special characters', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Error: Invalid input @#$%^&*()');
|
||||||
|
expect(error.message).toBe('Error: Invalid input @#$%^&*()');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle error message with newlines', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Error line 1\nError line 2');
|
||||||
|
expect(error.message).toBe('Error line 1\nError line 2');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('IdentityDomainValidationError', () => {
|
||||||
|
it('should create a validation error with correct kind', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Invalid email format');
|
||||||
|
|
||||||
|
expect(error.kind).toBe('validation');
|
||||||
|
expect(error.type).toBe('domain');
|
||||||
|
expect(error.context).toBe('identity-domain');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be an instance of IdentityDomainValidationError', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Invalid email format');
|
||||||
|
expect(error instanceof IdentityDomainValidationError).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be an instance of IdentityDomainError', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Invalid email format');
|
||||||
|
expect(error instanceof IdentityDomainError).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle validation error with empty message', () => {
|
||||||
|
const error = new IdentityDomainValidationError('');
|
||||||
|
expect(error.kind).toBe('validation');
|
||||||
|
expect(error.message).toBe('');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle validation error with complex message', () => {
|
||||||
|
const error = new IdentityDomainValidationError(
|
||||||
|
'Validation failed: Email must be at least 6 characters long and contain a valid domain'
|
||||||
|
);
|
||||||
|
expect(error.kind).toBe('validation');
|
||||||
|
expect(error.message).toBe(
|
||||||
|
'Validation failed: Email must be at least 6 characters long and contain a valid domain'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('IdentityDomainInvariantError', () => {
|
||||||
|
it('should create an invariant error with correct kind', () => {
|
||||||
|
const error = new IdentityDomainInvariantError('User must have a valid email');
|
||||||
|
|
||||||
|
expect(error.kind).toBe('invariant');
|
||||||
|
expect(error.type).toBe('domain');
|
||||||
|
expect(error.context).toBe('identity-domain');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be an instance of IdentityDomainInvariantError', () => {
|
||||||
|
const error = new IdentityDomainInvariantError('User must have a valid email');
|
||||||
|
expect(error instanceof IdentityDomainInvariantError).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be an instance of IdentityDomainError', () => {
|
||||||
|
const error = new IdentityDomainInvariantError('User must have a valid email');
|
||||||
|
expect(error instanceof IdentityDomainError).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle invariant error with empty message', () => {
|
||||||
|
const error = new IdentityDomainInvariantError('');
|
||||||
|
expect(error.kind).toBe('invariant');
|
||||||
|
expect(error.message).toBe('');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle invariant error with complex message', () => {
|
||||||
|
const error = new IdentityDomainInvariantError(
|
||||||
|
'Invariant violation: User rating must be between 0 and 100'
|
||||||
|
);
|
||||||
|
expect(error.kind).toBe('invariant');
|
||||||
|
expect(error.message).toBe(
|
||||||
|
'Invariant violation: User rating must be between 0 and 100'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Error hierarchy', () => {
|
||||||
|
it('should maintain correct error hierarchy for validation errors', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test');
|
||||||
|
|
||||||
|
expect(error instanceof IdentityDomainValidationError).toBe(true);
|
||||||
|
expect(error instanceof IdentityDomainError).toBe(true);
|
||||||
|
expect(error instanceof Error).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should maintain correct error hierarchy for invariant errors', () => {
|
||||||
|
const error = new IdentityDomainInvariantError('Test');
|
||||||
|
|
||||||
|
expect(error instanceof IdentityDomainInvariantError).toBe(true);
|
||||||
|
expect(error instanceof IdentityDomainError).toBe(true);
|
||||||
|
expect(error instanceof Error).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should allow catching as IdentityDomainError', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test');
|
||||||
|
|
||||||
|
try {
|
||||||
|
throw error;
|
||||||
|
} catch (e) {
|
||||||
|
expect(e instanceof IdentityDomainError).toBe(true);
|
||||||
|
expect((e as IdentityDomainError).kind).toBe('validation');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should allow catching as Error', () => {
|
||||||
|
const error = new IdentityDomainInvariantError('Test');
|
||||||
|
|
||||||
|
try {
|
||||||
|
throw error;
|
||||||
|
} catch (e) {
|
||||||
|
expect(e instanceof Error).toBe(true);
|
||||||
|
expect((e as Error).message).toBe('Test');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Error properties', () => {
|
||||||
|
it('should have consistent type property', () => {
|
||||||
|
const validationError = new IdentityDomainValidationError('Test');
|
||||||
|
const invariantError = new IdentityDomainInvariantError('Test');
|
||||||
|
|
||||||
|
expect(validationError.type).toBe('domain');
|
||||||
|
expect(invariantError.type).toBe('domain');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have consistent context property', () => {
|
||||||
|
const validationError = new IdentityDomainValidationError('Test');
|
||||||
|
const invariantError = new IdentityDomainInvariantError('Test');
|
||||||
|
|
||||||
|
expect(validationError.context).toBe('identity-domain');
|
||||||
|
expect(invariantError.context).toBe('identity-domain');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should have different kind properties', () => {
|
||||||
|
const validationError = new IdentityDomainValidationError('Test');
|
||||||
|
const invariantError = new IdentityDomainInvariantError('Test');
|
||||||
|
|
||||||
|
expect(validationError.kind).toBe('validation');
|
||||||
|
expect(invariantError.kind).toBe('invariant');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Error usage patterns', () => {
|
||||||
|
it('should be usable in try-catch blocks', () => {
|
||||||
|
expect(() => {
|
||||||
|
throw new IdentityDomainValidationError('Invalid input');
|
||||||
|
}).toThrow(IdentityDomainValidationError);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be usable with error instanceof checks', () => {
|
||||||
|
const error = new IdentityDomainValidationError('Test');
|
||||||
|
|
||||||
|
expect(error instanceof IdentityDomainValidationError).toBe(true);
|
||||||
|
expect(error instanceof IdentityDomainError).toBe(true);
|
||||||
|
expect(error instanceof Error).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be usable with error type narrowing', () => {
|
||||||
|
const error: IdentityDomainError = new IdentityDomainValidationError('Test');
|
||||||
|
|
||||||
|
if (error.kind === 'validation') {
|
||||||
|
expect(error instanceof IdentityDomainValidationError).toBe(true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should support error message extraction', () => {
|
||||||
|
const errorMessage = 'User email is required';
|
||||||
|
const error = new IdentityDomainValidationError(errorMessage);
|
||||||
|
|
||||||
|
expect(error.message).toBe(errorMessage);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
216
core/identity/domain/services/PasswordHashingService.test.ts
Normal file
216
core/identity/domain/services/PasswordHashingService.test.ts
Normal file
@@ -0,0 +1,216 @@
|
|||||||
|
/**
|
||||||
|
* Domain Service Tests: PasswordHashingService
|
||||||
|
*
|
||||||
|
* Tests for password hashing and verification business logic
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect, beforeEach } from 'vitest';
|
||||||
|
import { PasswordHashingService } from './PasswordHashingService';
|
||||||
|
|
||||||
|
describe('PasswordHashingService', () => {
|
||||||
|
let service: PasswordHashingService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
service = new PasswordHashingService();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('hash', () => {
|
||||||
|
it('should hash a plain text password', async () => {
|
||||||
|
const plainPassword = 'mySecurePassword123';
|
||||||
|
const hash = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
expect(hash).toBeDefined();
|
||||||
|
expect(typeof hash).toBe('string');
|
||||||
|
expect(hash.length).toBeGreaterThan(0);
|
||||||
|
// Hash should not be the same as the plain password
|
||||||
|
expect(hash).not.toBe(plainPassword);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should produce different hashes for the same password (with salt)', async () => {
|
||||||
|
const plainPassword = 'mySecurePassword123';
|
||||||
|
const hash1 = await service.hash(plainPassword);
|
||||||
|
const hash2 = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
// Due to salting, hashes should be different
|
||||||
|
expect(hash1).not.toBe(hash2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle empty string password', async () => {
|
||||||
|
const hash = await service.hash('');
|
||||||
|
expect(hash).toBeDefined();
|
||||||
|
expect(typeof hash).toBe('string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle special characters in password', async () => {
|
||||||
|
const specialPassword = 'P@ssw0rd!#$%^&*()_+-=[]{}|;:,.<>?';
|
||||||
|
const hash = await service.hash(specialPassword);
|
||||||
|
|
||||||
|
expect(hash).toBeDefined();
|
||||||
|
expect(typeof hash).toBe('string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle unicode characters in password', async () => {
|
||||||
|
const unicodePassword = 'Pässwörd!🔒';
|
||||||
|
const hash = await service.hash(unicodePassword);
|
||||||
|
|
||||||
|
expect(hash).toBeDefined();
|
||||||
|
expect(typeof hash).toBe('string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle very long passwords', async () => {
|
||||||
|
const longPassword = 'a'.repeat(1000);
|
||||||
|
const hash = await service.hash(longPassword);
|
||||||
|
|
||||||
|
expect(hash).toBeDefined();
|
||||||
|
expect(typeof hash).toBe('string');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle whitespace-only password', async () => {
|
||||||
|
const whitespacePassword = ' ';
|
||||||
|
const hash = await service.hash(whitespacePassword);
|
||||||
|
|
||||||
|
expect(hash).toBeDefined();
|
||||||
|
expect(typeof hash).toBe('string');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('verify', () => {
|
||||||
|
it('should verify correct password against hash', async () => {
|
||||||
|
const plainPassword = 'mySecurePassword123';
|
||||||
|
const hash = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify(plainPassword, hash);
|
||||||
|
expect(isValid).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject incorrect password', async () => {
|
||||||
|
const plainPassword = 'mySecurePassword123';
|
||||||
|
const hash = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify('wrongPassword', hash);
|
||||||
|
expect(isValid).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject empty password against hash', async () => {
|
||||||
|
const plainPassword = 'mySecurePassword123';
|
||||||
|
const hash = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify('', hash);
|
||||||
|
expect(isValid).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle verification with special characters', async () => {
|
||||||
|
const specialPassword = 'P@ssw0rd!#$%^&*()_+-=[]{}|;:,.<>?';
|
||||||
|
const hash = await service.hash(specialPassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify(specialPassword, hash);
|
||||||
|
expect(isValid).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle verification with unicode characters', async () => {
|
||||||
|
const unicodePassword = 'Pässwörd!🔒';
|
||||||
|
const hash = await service.hash(unicodePassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify(unicodePassword, hash);
|
||||||
|
expect(isValid).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle verification with very long passwords', async () => {
|
||||||
|
const longPassword = 'a'.repeat(1000);
|
||||||
|
const hash = await service.hash(longPassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify(longPassword, hash);
|
||||||
|
expect(isValid).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle verification with whitespace-only password', async () => {
|
||||||
|
const whitespacePassword = ' ';
|
||||||
|
const hash = await service.hash(whitespacePassword);
|
||||||
|
|
||||||
|
const isValid = await service.verify(whitespacePassword, hash);
|
||||||
|
expect(isValid).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject verification with null hash', async () => {
|
||||||
|
// bcrypt throws an error when hash is null, which is expected behavior
|
||||||
|
await expect(service.verify('password', null as any)).rejects.toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject verification with empty hash', async () => {
|
||||||
|
const isValid = await service.verify('password', '');
|
||||||
|
expect(isValid).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject verification with invalid hash format', async () => {
|
||||||
|
const isValid = await service.verify('password', 'invalid-hash-format');
|
||||||
|
expect(isValid).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Hash Consistency', () => {
|
||||||
|
it('should consistently verify the same password-hash pair', async () => {
|
||||||
|
const plainPassword = 'testPassword123';
|
||||||
|
const hash = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
// Verify multiple times
|
||||||
|
const result1 = await service.verify(plainPassword, hash);
|
||||||
|
const result2 = await service.verify(plainPassword, hash);
|
||||||
|
const result3 = await service.verify(plainPassword, hash);
|
||||||
|
|
||||||
|
expect(result1).toBe(true);
|
||||||
|
expect(result2).toBe(true);
|
||||||
|
expect(result3).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should consistently reject wrong password', async () => {
|
||||||
|
const plainPassword = 'testPassword123';
|
||||||
|
const wrongPassword = 'wrongPassword';
|
||||||
|
const hash = await service.hash(plainPassword);
|
||||||
|
|
||||||
|
// Verify multiple times with wrong password
|
||||||
|
const result1 = await service.verify(wrongPassword, hash);
|
||||||
|
const result2 = await service.verify(wrongPassword, hash);
|
||||||
|
const result3 = await service.verify(wrongPassword, hash);
|
||||||
|
|
||||||
|
expect(result1).toBe(false);
|
||||||
|
expect(result2).toBe(false);
|
||||||
|
expect(result3).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Security Properties', () => {
|
||||||
|
it('should not leak information about the original password from hash', async () => {
|
||||||
|
const password1 = 'password123';
|
||||||
|
const password2 = 'password456';
|
||||||
|
|
||||||
|
const hash1 = await service.hash(password1);
|
||||||
|
const hash2 = await service.hash(password2);
|
||||||
|
|
||||||
|
// Hashes should be different
|
||||||
|
expect(hash1).not.toBe(hash2);
|
||||||
|
|
||||||
|
// Neither hash should contain the original password
|
||||||
|
expect(hash1).not.toContain(password1);
|
||||||
|
expect(hash2).not.toContain(password2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle case sensitivity correctly', async () => {
|
||||||
|
const password1 = 'Password';
|
||||||
|
const password2 = 'password';
|
||||||
|
|
||||||
|
const hash1 = await service.hash(password1);
|
||||||
|
const hash2 = await service.hash(password2);
|
||||||
|
|
||||||
|
// Should be treated as different passwords
|
||||||
|
const isValid1 = await service.verify(password1, hash1);
|
||||||
|
const isValid2 = await service.verify(password2, hash2);
|
||||||
|
const isCrossValid1 = await service.verify(password1, hash2);
|
||||||
|
const isCrossValid2 = await service.verify(password2, hash1);
|
||||||
|
|
||||||
|
expect(isValid1).toBe(true);
|
||||||
|
expect(isValid2).toBe(true);
|
||||||
|
expect(isCrossValid1).toBe(false);
|
||||||
|
expect(isCrossValid2).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
338
core/identity/domain/types/EmailAddress.test.ts
Normal file
338
core/identity/domain/types/EmailAddress.test.ts
Normal file
@@ -0,0 +1,338 @@
|
|||||||
|
/**
|
||||||
|
* Domain Types Tests: EmailAddress
|
||||||
|
*
|
||||||
|
* Tests for email validation and disposable email detection
|
||||||
|
*/
|
||||||
|
|
||||||
|
import { describe, it, expect } from 'vitest';
|
||||||
|
import { validateEmail, isDisposableEmail, DISPOSABLE_DOMAINS } from './EmailAddress';
|
||||||
|
|
||||||
|
describe('EmailAddress', () => {
|
||||||
|
describe('validateEmail', () => {
|
||||||
|
describe('Valid emails', () => {
|
||||||
|
it('should validate standard email format', () => {
|
||||||
|
const result = validateEmail('user@example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with subdomain', () => {
|
||||||
|
const result = validateEmail('user@mail.example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user@mail.example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with plus sign', () => {
|
||||||
|
const result = validateEmail('user+tag@example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user+tag@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with numbers', () => {
|
||||||
|
const result = validateEmail('user123@example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user123@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with hyphens', () => {
|
||||||
|
const result = validateEmail('user-name@example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user-name@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with underscores', () => {
|
||||||
|
const result = validateEmail('user_name@example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user_name@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with dots in local part', () => {
|
||||||
|
const result = validateEmail('user.name@example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('user.name@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with uppercase letters', () => {
|
||||||
|
const result = validateEmail('User@Example.com');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
// Should be normalized to lowercase
|
||||||
|
expect(result.email).toBe('user@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate email with leading/trailing whitespace', () => {
|
||||||
|
const result = validateEmail(' user@example.com ');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
// Should be trimmed
|
||||||
|
expect(result.email).toBe('user@example.com');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate minimum length email (6 chars)', () => {
|
||||||
|
const result = validateEmail('a@b.cd');
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe('a@b.cd');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should validate maximum length email (254 chars)', () => {
|
||||||
|
const localPart = 'a'.repeat(64);
|
||||||
|
const domain = 'example.com';
|
||||||
|
const email = `${localPart}@${domain}`;
|
||||||
|
const result = validateEmail(email);
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe(email);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Invalid emails', () => {
|
||||||
|
it('should reject empty string', () => {
|
||||||
|
const result = validateEmail('');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject whitespace-only string', () => {
|
||||||
|
const result = validateEmail(' ');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email without @ symbol', () => {
|
||||||
|
const result = validateEmail('userexample.com');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email without domain', () => {
|
||||||
|
const result = validateEmail('user@');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email without local part', () => {
|
||||||
|
const result = validateEmail('@example.com');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email with multiple @ symbols', () => {
|
||||||
|
const result = validateEmail('user@domain@com');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email with spaces in local part', () => {
|
||||||
|
const result = validateEmail('user name@example.com');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email with spaces in domain', () => {
|
||||||
|
const result = validateEmail('user@ex ample.com');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email with invalid characters', () => {
|
||||||
|
const result = validateEmail('user#name@example.com');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email that is too short', () => {
|
||||||
|
const result = validateEmail('a@b.c');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should accept email that is exactly 254 characters', () => {
|
||||||
|
// The maximum email length is 254 characters
|
||||||
|
const localPart = 'a'.repeat(64);
|
||||||
|
const domain = 'example.com';
|
||||||
|
const email = `${localPart}@${domain}`;
|
||||||
|
const result = validateEmail(email);
|
||||||
|
expect(result.success).toBe(true);
|
||||||
|
if (result.success) {
|
||||||
|
expect(result.email).toBe(email);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email without TLD', () => {
|
||||||
|
const result = validateEmail('user@example');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should reject email with invalid TLD format', () => {
|
||||||
|
const result = validateEmail('user@example.');
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
if (!result.success) {
|
||||||
|
expect(result.error).toBeDefined();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Edge cases', () => {
|
||||||
|
it('should handle null input gracefully', () => {
|
||||||
|
const result = validateEmail(null as any);
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle undefined input gracefully', () => {
|
||||||
|
const result = validateEmail(undefined as any);
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle non-string input gracefully', () => {
|
||||||
|
const result = validateEmail(123 as any);
|
||||||
|
expect(result.success).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('isDisposableEmail', () => {
|
||||||
|
describe('Disposable email domains', () => {
|
||||||
|
it('should detect tempmail.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@tempmail.com')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should detect throwaway.email as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@throwaway.email')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should detect guerrillamail.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@guerrillamail.com')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should detect mailinator.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@mailinator.com')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should detect 10minutemail.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@10minutemail.com')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should detect disposable domains case-insensitively', () => {
|
||||||
|
expect(isDisposableEmail('user@TEMPMAIL.COM')).toBe(true);
|
||||||
|
expect(isDisposableEmail('user@TempMail.Com')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should detect disposable domains with subdomains', () => {
|
||||||
|
// The current implementation only checks the exact domain, not subdomains
|
||||||
|
// So this test documents the current behavior
|
||||||
|
expect(isDisposableEmail('user@subdomain.tempmail.com')).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Non-disposable email domains', () => {
|
||||||
|
it('should not detect gmail.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@gmail.com')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not detect yahoo.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@yahoo.com')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not detect outlook.com as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@outlook.com')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not detect company domains as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@example.com')).toBe(false);
|
||||||
|
expect(isDisposableEmail('user@company.com')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not detect custom domains as disposable', () => {
|
||||||
|
expect(isDisposableEmail('user@mydomain.com')).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Edge cases', () => {
|
||||||
|
it('should handle email without domain', () => {
|
||||||
|
expect(isDisposableEmail('user@')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle email without @ symbol', () => {
|
||||||
|
expect(isDisposableEmail('user')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle empty string', () => {
|
||||||
|
expect(isDisposableEmail('')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle null input', () => {
|
||||||
|
// The current implementation throws an error when given null
|
||||||
|
// This is expected behavior - the function expects a string
|
||||||
|
expect(() => isDisposableEmail(null as any)).toThrow();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should handle undefined input', () => {
|
||||||
|
// The current implementation throws an error when given undefined
|
||||||
|
// This is expected behavior - the function expects a string
|
||||||
|
expect(() => isDisposableEmail(undefined as any)).toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('DISPOSABLE_DOMAINS', () => {
|
||||||
|
it('should contain expected disposable domains', () => {
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('tempmail.com')).toBe(true);
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('throwaway.email')).toBe(true);
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('guerrillamail.com')).toBe(true);
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('mailinator.com')).toBe(true);
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('10minutemail.com')).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not contain non-disposable domains', () => {
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('gmail.com')).toBe(false);
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('yahoo.com')).toBe(false);
|
||||||
|
expect(DISPOSABLE_DOMAINS.has('outlook.com')).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should be a Set', () => {
|
||||||
|
expect(DISPOSABLE_DOMAINS instanceof Set).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
128
core/media/application/use-cases/GetUploadedMediaUseCase.test.ts
Normal file
128
core/media/application/use-cases/GetUploadedMediaUseCase.test.ts
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
import { Result } from '@core/shared/domain/Result';
|
||||||
|
import { describe, expect, it, vi, type Mock } from 'vitest';
|
||||||
|
import type { MediaStoragePort } from '../ports/MediaStoragePort';
|
||||||
|
import { GetUploadedMediaUseCase } from './GetUploadedMediaUseCase';
|
||||||
|
|
||||||
|
describe('GetUploadedMediaUseCase', () => {
|
||||||
|
let mediaStorage: {
|
||||||
|
getBytes: Mock;
|
||||||
|
getMetadata: Mock;
|
||||||
|
};
|
||||||
|
let useCase: GetUploadedMediaUseCase;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
mediaStorage = {
|
||||||
|
getBytes: vi.fn(),
|
||||||
|
getMetadata: vi.fn(),
|
||||||
|
};
|
||||||
|
|
||||||
|
useCase = new GetUploadedMediaUseCase(
|
||||||
|
mediaStorage as unknown as MediaStoragePort,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns null when media is not found', async () => {
|
||||||
|
mediaStorage.getBytes.mockResolvedValue(null);
|
||||||
|
|
||||||
|
const input = { storageKey: 'missing-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(mediaStorage.getBytes).toHaveBeenCalledWith('missing-key');
|
||||||
|
expect(result).toBeInstanceOf(Result);
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
expect(result.unwrap()).toBe(null);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns media bytes and content type when found', async () => {
|
||||||
|
const mockBytes = Buffer.from('test data');
|
||||||
|
const mockMetadata = { size: 9, contentType: 'image/png' };
|
||||||
|
|
||||||
|
mediaStorage.getBytes.mockResolvedValue(mockBytes);
|
||||||
|
mediaStorage.getMetadata.mockResolvedValue(mockMetadata);
|
||||||
|
|
||||||
|
const input = { storageKey: 'media-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(mediaStorage.getBytes).toHaveBeenCalledWith('media-key');
|
||||||
|
expect(mediaStorage.getMetadata).toHaveBeenCalledWith('media-key');
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult).not.toBeNull();
|
||||||
|
expect(successResult!.bytes).toBeInstanceOf(Buffer);
|
||||||
|
expect(successResult!.bytes.toString()).toBe('test data');
|
||||||
|
expect(successResult!.contentType).toBe('image/png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns default content type when metadata is null', async () => {
|
||||||
|
const mockBytes = Buffer.from('test data');
|
||||||
|
|
||||||
|
mediaStorage.getBytes.mockResolvedValue(mockBytes);
|
||||||
|
mediaStorage.getMetadata.mockResolvedValue(null);
|
||||||
|
|
||||||
|
const input = { storageKey: 'media-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult!.contentType).toBe('application/octet-stream');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns default content type when metadata has no contentType', async () => {
|
||||||
|
const mockBytes = Buffer.from('test data');
|
||||||
|
const mockMetadata = { size: 9 };
|
||||||
|
|
||||||
|
mediaStorage.getBytes.mockResolvedValue(mockBytes);
|
||||||
|
mediaStorage.getMetadata.mockResolvedValue(mockMetadata as any);
|
||||||
|
|
||||||
|
const input = { storageKey: 'media-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult!.contentType).toBe('application/octet-stream');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('handles storage errors by returning error', async () => {
|
||||||
|
mediaStorage.getBytes.mockRejectedValue(new Error('Storage error'));
|
||||||
|
|
||||||
|
const input = { storageKey: 'media-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isErr()).toBe(true);
|
||||||
|
const err = result.unwrapErr();
|
||||||
|
expect(err.message).toBe('Storage error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('handles getMetadata errors by returning error', async () => {
|
||||||
|
const mockBytes = Buffer.from('test data');
|
||||||
|
|
||||||
|
mediaStorage.getBytes.mockResolvedValue(mockBytes);
|
||||||
|
mediaStorage.getMetadata.mockRejectedValue(new Error('Metadata error'));
|
||||||
|
|
||||||
|
const input = { storageKey: 'media-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isErr()).toBe(true);
|
||||||
|
const err = result.unwrapErr();
|
||||||
|
expect(err.message).toBe('Metadata error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns bytes as Buffer', async () => {
|
||||||
|
const mockBytes = new Uint8Array([0x48, 0x65, 0x6c, 0x6c, 0x6f]); // "Hello"
|
||||||
|
|
||||||
|
mediaStorage.getBytes.mockResolvedValue(mockBytes);
|
||||||
|
mediaStorage.getMetadata.mockResolvedValue({ size: 5, contentType: 'text/plain' });
|
||||||
|
|
||||||
|
const input = { storageKey: 'media-key' };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult!.bytes).toBeInstanceOf(Buffer);
|
||||||
|
expect(successResult!.bytes.toString()).toBe('Hello');
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
import { Result } from '@core/shared/domain/Result';
|
||||||
|
import { describe, expect, it, vi, type Mock } from 'vitest';
|
||||||
|
import type { MediaResolverPort } from '@core/ports/media/MediaResolverPort';
|
||||||
|
import { ResolveMediaReferenceUseCase } from './ResolveMediaReferenceUseCase';
|
||||||
|
|
||||||
|
describe('ResolveMediaReferenceUseCase', () => {
|
||||||
|
let mediaResolver: {
|
||||||
|
resolve: Mock;
|
||||||
|
};
|
||||||
|
let useCase: ResolveMediaReferenceUseCase;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
mediaResolver = {
|
||||||
|
resolve: vi.fn(),
|
||||||
|
};
|
||||||
|
|
||||||
|
useCase = new ResolveMediaReferenceUseCase(
|
||||||
|
mediaResolver as unknown as MediaResolverPort,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns resolved path when media reference is resolved', async () => {
|
||||||
|
mediaResolver.resolve.mockResolvedValue('/resolved/path/to/media.png');
|
||||||
|
|
||||||
|
const input = { reference: { type: 'team', id: 'team-123' } };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(mediaResolver.resolve).toHaveBeenCalledWith({ type: 'team', id: 'team-123' });
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult).toBe('/resolved/path/to/media.png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns null when media reference resolves to null', async () => {
|
||||||
|
mediaResolver.resolve.mockResolvedValue(null);
|
||||||
|
|
||||||
|
const input = { reference: { type: 'team', id: 'team-123' } };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(mediaResolver.resolve).toHaveBeenCalledWith({ type: 'team', id: 'team-123' });
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult).toBe(null);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns empty string when media reference resolves to empty string', async () => {
|
||||||
|
mediaResolver.resolve.mockResolvedValue('');
|
||||||
|
|
||||||
|
const input = { reference: { type: 'team', id: 'team-123' } };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(mediaResolver.resolve).toHaveBeenCalledWith({ type: 'team', id: 'team-123' });
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult).toBe('');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('handles resolver errors by returning error', async () => {
|
||||||
|
mediaResolver.resolve.mockRejectedValue(new Error('Resolver error'));
|
||||||
|
|
||||||
|
const input = { reference: { type: 'team', id: 'team-123' } };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isErr()).toBe(true);
|
||||||
|
const err = result.unwrapErr();
|
||||||
|
expect(err.message).toBe('Resolver error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('handles non-Error exceptions by wrapping in Error', async () => {
|
||||||
|
mediaResolver.resolve.mockRejectedValue('string error');
|
||||||
|
|
||||||
|
const input = { reference: { type: 'team', id: 'team-123' } };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(result.isErr()).toBe(true);
|
||||||
|
const err = result.unwrapErr();
|
||||||
|
expect(err.message).toBe('string error');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('resolves different reference types', async () => {
|
||||||
|
const testCases = [
|
||||||
|
{ type: 'team', id: 'team-123' },
|
||||||
|
{ type: 'league', id: 'league-456' },
|
||||||
|
{ type: 'driver', id: 'driver-789' },
|
||||||
|
];
|
||||||
|
|
||||||
|
for (const reference of testCases) {
|
||||||
|
mediaResolver.resolve.mockResolvedValue(`/resolved/${reference.type}/${reference.id}.png`);
|
||||||
|
|
||||||
|
const input = { reference };
|
||||||
|
const result = await useCase.execute(input);
|
||||||
|
|
||||||
|
expect(mediaResolver.resolve).toHaveBeenCalledWith(reference);
|
||||||
|
expect(result.isOk()).toBe(true);
|
||||||
|
|
||||||
|
const successResult = result.unwrap();
|
||||||
|
expect(successResult).toBe(`/resolved/${reference.type}/${reference.id}.png`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,7 +1,182 @@
|
|||||||
import * as mod from '@core/media/domain/entities/Avatar';
|
import { Avatar } from './Avatar';
|
||||||
|
import { MediaUrl } from '../value-objects/MediaUrl';
|
||||||
|
|
||||||
describe('media/domain/entities/Avatar.ts', () => {
|
describe('Avatar', () => {
|
||||||
it('imports', () => {
|
describe('create', () => {
|
||||||
expect(mod).toBeTruthy();
|
it('creates a new avatar with required properties', () => {
|
||||||
|
const avatar = Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.id).toBe('avatar-1');
|
||||||
|
expect(avatar.driverId).toBe('driver-1');
|
||||||
|
expect(avatar.mediaUrl).toBeInstanceOf(MediaUrl);
|
||||||
|
expect(avatar.mediaUrl.value).toBe('https://example.com/avatar.png');
|
||||||
|
expect(avatar.isActive).toBe(true);
|
||||||
|
expect(avatar.selectedAt).toBeInstanceOf(Date);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when driverId is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: '',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
})
|
||||||
|
).toThrow('Driver ID is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when mediaUrl is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: '',
|
||||||
|
})
|
||||||
|
).toThrow('Media URL is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when mediaUrl is invalid', () => {
|
||||||
|
expect(() =>
|
||||||
|
Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'invalid-url',
|
||||||
|
})
|
||||||
|
).toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('reconstitute', () => {
|
||||||
|
it('reconstitutes an avatar from props', () => {
|
||||||
|
const selectedAt = new Date('2024-01-01T00:00:00.000Z');
|
||||||
|
const avatar = Avatar.reconstitute({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
selectedAt,
|
||||||
|
isActive: true,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.id).toBe('avatar-1');
|
||||||
|
expect(avatar.driverId).toBe('driver-1');
|
||||||
|
expect(avatar.mediaUrl.value).toBe('https://example.com/avatar.png');
|
||||||
|
expect(avatar.selectedAt).toEqual(selectedAt);
|
||||||
|
expect(avatar.isActive).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('reconstitutes an inactive avatar', () => {
|
||||||
|
const avatar = Avatar.reconstitute({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
selectedAt: new Date(),
|
||||||
|
isActive: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.isActive).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('deactivate', () => {
|
||||||
|
it('deactivates an active avatar', () => {
|
||||||
|
const avatar = Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.isActive).toBe(true);
|
||||||
|
|
||||||
|
avatar.deactivate();
|
||||||
|
|
||||||
|
expect(avatar.isActive).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('can deactivate an already inactive avatar', () => {
|
||||||
|
const avatar = Avatar.reconstitute({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
selectedAt: new Date(),
|
||||||
|
isActive: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
avatar.deactivate();
|
||||||
|
|
||||||
|
expect(avatar.isActive).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('toProps', () => {
|
||||||
|
it('returns correct props for a new avatar', () => {
|
||||||
|
const avatar = Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = avatar.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('avatar-1');
|
||||||
|
expect(props.driverId).toBe('driver-1');
|
||||||
|
expect(props.mediaUrl).toBe('https://example.com/avatar.png');
|
||||||
|
expect(props.selectedAt).toBeInstanceOf(Date);
|
||||||
|
expect(props.isActive).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns correct props for an inactive avatar', () => {
|
||||||
|
const selectedAt = new Date('2024-01-01T00:00:00.000Z');
|
||||||
|
const avatar = Avatar.reconstitute({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
selectedAt,
|
||||||
|
isActive: false,
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = avatar.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('avatar-1');
|
||||||
|
expect(props.driverId).toBe('driver-1');
|
||||||
|
expect(props.mediaUrl).toBe('https://example.com/avatar.png');
|
||||||
|
expect(props.selectedAt).toEqual(selectedAt);
|
||||||
|
expect(props.isActive).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('value object validation', () => {
|
||||||
|
it('validates mediaUrl as MediaUrl value object', () => {
|
||||||
|
const avatar = Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'https://example.com/avatar.png',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.mediaUrl).toBeInstanceOf(MediaUrl);
|
||||||
|
expect(avatar.mediaUrl.value).toBe('https://example.com/avatar.png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('accepts data URI for mediaUrl', () => {
|
||||||
|
const avatar = Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: 'data:image/png;base64,abc',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.mediaUrl.value).toBe('data:image/png;base64,abc');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('accepts root-relative path for mediaUrl', () => {
|
||||||
|
const avatar = Avatar.create({
|
||||||
|
id: 'avatar-1',
|
||||||
|
driverId: 'driver-1',
|
||||||
|
mediaUrl: '/images/avatar.png',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(avatar.mediaUrl.value).toBe('/images/avatar.png');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,7 +1,476 @@
|
|||||||
import * as mod from '@core/media/domain/entities/AvatarGenerationRequest';
|
import { AvatarGenerationRequest } from './AvatarGenerationRequest';
|
||||||
|
import { MediaUrl } from '../value-objects/MediaUrl';
|
||||||
|
|
||||||
describe('media/domain/entities/AvatarGenerationRequest.ts', () => {
|
describe('AvatarGenerationRequest', () => {
|
||||||
it('imports', () => {
|
describe('create', () => {
|
||||||
expect(mod).toBeTruthy();
|
it('creates a new request with required properties', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.id).toBe('req-1');
|
||||||
|
expect(request.userId).toBe('user-1');
|
||||||
|
expect(request.facePhotoUrl).toBeInstanceOf(MediaUrl);
|
||||||
|
expect(request.facePhotoUrl.value).toBe('data:image/png;base64,abc');
|
||||||
|
expect(request.suitColor).toBe('red');
|
||||||
|
expect(request.style).toBe('realistic');
|
||||||
|
expect(request.status).toBe('pending');
|
||||||
|
expect(request.generatedAvatarUrls).toEqual([]);
|
||||||
|
expect(request.selectedAvatarIndex).toBeUndefined();
|
||||||
|
expect(request.errorMessage).toBeUndefined();
|
||||||
|
expect(request.createdAt).toBeInstanceOf(Date);
|
||||||
|
expect(request.updatedAt).toBeInstanceOf(Date);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('creates request with default style when not provided', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'blue',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.style).toBe('realistic');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when userId is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: '',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
})
|
||||||
|
).toThrow('User ID is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when facePhotoUrl is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: '',
|
||||||
|
suitColor: 'red',
|
||||||
|
})
|
||||||
|
).toThrow('Face photo URL is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when facePhotoUrl is invalid', () => {
|
||||||
|
expect(() =>
|
||||||
|
AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'invalid-url',
|
||||||
|
suitColor: 'red',
|
||||||
|
})
|
||||||
|
).toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('reconstitute', () => {
|
||||||
|
it('reconstitutes a request from props', () => {
|
||||||
|
const createdAt = new Date('2024-01-01T00:00:00.000Z');
|
||||||
|
const updatedAt = new Date('2024-01-01T01:00:00.000Z');
|
||||||
|
const request = AvatarGenerationRequest.reconstitute({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
status: 'pending',
|
||||||
|
generatedAvatarUrls: [],
|
||||||
|
createdAt,
|
||||||
|
updatedAt,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.id).toBe('req-1');
|
||||||
|
expect(request.userId).toBe('user-1');
|
||||||
|
expect(request.facePhotoUrl.value).toBe('data:image/png;base64,abc');
|
||||||
|
expect(request.suitColor).toBe('red');
|
||||||
|
expect(request.style).toBe('realistic');
|
||||||
|
expect(request.status).toBe('pending');
|
||||||
|
expect(request.generatedAvatarUrls).toEqual([]);
|
||||||
|
expect(request.selectedAvatarIndex).toBeUndefined();
|
||||||
|
expect(request.errorMessage).toBeUndefined();
|
||||||
|
expect(request.createdAt).toEqual(createdAt);
|
||||||
|
expect(request.updatedAt).toEqual(updatedAt);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('reconstitutes a request with selected avatar', () => {
|
||||||
|
const request = AvatarGenerationRequest.reconstitute({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
status: 'completed',
|
||||||
|
generatedAvatarUrls: ['https://example.com/a.png', 'https://example.com/b.png'],
|
||||||
|
selectedAvatarIndex: 1,
|
||||||
|
createdAt: new Date(),
|
||||||
|
updatedAt: new Date(),
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.selectedAvatarIndex).toBe(1);
|
||||||
|
expect(request.selectedAvatarUrl).toBe('https://example.com/b.png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('reconstitutes a failed request', () => {
|
||||||
|
const request = AvatarGenerationRequest.reconstitute({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
status: 'failed',
|
||||||
|
generatedAvatarUrls: [],
|
||||||
|
errorMessage: 'Generation failed',
|
||||||
|
createdAt: new Date(),
|
||||||
|
updatedAt: new Date(),
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.status).toBe('failed');
|
||||||
|
expect(request.errorMessage).toBe('Generation failed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('status transitions', () => {
|
||||||
|
it('transitions from pending to validating', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.status).toBe('pending');
|
||||||
|
|
||||||
|
request.markAsValidating();
|
||||||
|
|
||||||
|
expect(request.status).toBe('validating');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('transitions from validating to generating', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
|
||||||
|
request.markAsGenerating();
|
||||||
|
|
||||||
|
expect(request.status).toBe('generating');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when marking as validating from non-pending status', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
|
||||||
|
expect(() => request.markAsValidating()).toThrow('Can only start validation from pending status');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when marking as generating from non-validating status', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(() => request.markAsGenerating()).toThrow('Can only start generation from validating status');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('completes request with avatars', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.markAsGenerating();
|
||||||
|
|
||||||
|
request.completeWithAvatars(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
|
||||||
|
expect(request.status).toBe('completed');
|
||||||
|
expect(request.generatedAvatarUrls).toEqual(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when completing with empty avatar list', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.markAsGenerating();
|
||||||
|
|
||||||
|
expect(() => request.completeWithAvatars([])).toThrow('At least one avatar URL is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('fails request with error message', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
|
||||||
|
request.fail('Face validation failed');
|
||||||
|
|
||||||
|
expect(request.status).toBe('failed');
|
||||||
|
expect(request.errorMessage).toBe('Face validation failed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('avatar selection', () => {
|
||||||
|
it('selects avatar when request is completed', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.markAsGenerating();
|
||||||
|
request.completeWithAvatars(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
|
||||||
|
request.selectAvatar(1);
|
||||||
|
|
||||||
|
expect(request.selectedAvatarIndex).toBe(1);
|
||||||
|
expect(request.selectedAvatarUrl).toBe('https://example.com/b.png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when selecting avatar from non-completed request', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
|
||||||
|
expect(() => request.selectAvatar(0)).toThrow('Can only select avatar when generation is completed');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when selecting invalid index', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.markAsGenerating();
|
||||||
|
request.completeWithAvatars(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
|
||||||
|
expect(() => request.selectAvatar(-1)).toThrow('Invalid avatar index');
|
||||||
|
expect(() => request.selectAvatar(2)).toThrow('Invalid avatar index');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns undefined for selectedAvatarUrl when no avatar selected', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.markAsGenerating();
|
||||||
|
request.completeWithAvatars(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
|
||||||
|
expect(request.selectedAvatarUrl).toBeUndefined();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('buildPrompt', () => {
|
||||||
|
it('builds prompt for red suit, realistic style', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
});
|
||||||
|
|
||||||
|
const prompt = request.buildPrompt();
|
||||||
|
|
||||||
|
expect(prompt).toContain('vibrant racing red');
|
||||||
|
expect(prompt).toContain('photorealistic, professional motorsport portrait');
|
||||||
|
expect(prompt).toContain('racing driver');
|
||||||
|
expect(prompt).toContain('racing suit');
|
||||||
|
expect(prompt).toContain('helmet');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('builds prompt for blue suit, cartoon style', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'blue',
|
||||||
|
style: 'cartoon',
|
||||||
|
});
|
||||||
|
|
||||||
|
const prompt = request.buildPrompt();
|
||||||
|
|
||||||
|
expect(prompt).toContain('deep motorsport blue');
|
||||||
|
expect(prompt).toContain('stylized cartoon racing character');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('builds prompt for pixel-art style', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'green',
|
||||||
|
style: 'pixel-art',
|
||||||
|
});
|
||||||
|
|
||||||
|
const prompt = request.buildPrompt();
|
||||||
|
|
||||||
|
expect(prompt).toContain('racing green');
|
||||||
|
expect(prompt).toContain('8-bit pixel art retro racing avatar');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('builds prompt for all suit colors', () => {
|
||||||
|
const colors = ['red', 'blue', 'green', 'yellow', 'orange', 'purple', 'black', 'white', 'pink', 'cyan'] as const;
|
||||||
|
|
||||||
|
colors.forEach((color) => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: color,
|
||||||
|
});
|
||||||
|
|
||||||
|
const prompt = request.buildPrompt();
|
||||||
|
|
||||||
|
expect(prompt).toContain(color);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('toProps', () => {
|
||||||
|
it('returns correct props for a new request', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = request.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('req-1');
|
||||||
|
expect(props.userId).toBe('user-1');
|
||||||
|
expect(props.facePhotoUrl).toBe('data:image/png;base64,abc');
|
||||||
|
expect(props.suitColor).toBe('red');
|
||||||
|
expect(props.style).toBe('realistic');
|
||||||
|
expect(props.status).toBe('pending');
|
||||||
|
expect(props.generatedAvatarUrls).toEqual([]);
|
||||||
|
expect(props.selectedAvatarIndex).toBeUndefined();
|
||||||
|
expect(props.errorMessage).toBeUndefined();
|
||||||
|
expect(props.createdAt).toBeInstanceOf(Date);
|
||||||
|
expect(props.updatedAt).toBeInstanceOf(Date);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns correct props for a completed request with selected avatar', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.markAsGenerating();
|
||||||
|
request.completeWithAvatars(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
request.selectAvatar(1);
|
||||||
|
|
||||||
|
const props = request.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('req-1');
|
||||||
|
expect(props.userId).toBe('user-1');
|
||||||
|
expect(props.facePhotoUrl).toBe('data:image/png;base64,abc');
|
||||||
|
expect(props.suitColor).toBe('red');
|
||||||
|
expect(props.style).toBe('realistic');
|
||||||
|
expect(props.status).toBe('completed');
|
||||||
|
expect(props.generatedAvatarUrls).toEqual(['https://example.com/a.png', 'https://example.com/b.png']);
|
||||||
|
expect(props.selectedAvatarIndex).toBe(1);
|
||||||
|
expect(props.errorMessage).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns correct props for a failed request', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
style: 'realistic',
|
||||||
|
});
|
||||||
|
request.markAsValidating();
|
||||||
|
request.fail('Face validation failed');
|
||||||
|
|
||||||
|
const props = request.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('req-1');
|
||||||
|
expect(props.userId).toBe('user-1');
|
||||||
|
expect(props.facePhotoUrl).toBe('data:image/png;base64,abc');
|
||||||
|
expect(props.suitColor).toBe('red');
|
||||||
|
expect(props.style).toBe('realistic');
|
||||||
|
expect(props.status).toBe('failed');
|
||||||
|
expect(props.generatedAvatarUrls).toEqual([]);
|
||||||
|
expect(props.selectedAvatarIndex).toBeUndefined();
|
||||||
|
expect(props.errorMessage).toBe('Face validation failed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('value object validation', () => {
|
||||||
|
it('validates facePhotoUrl as MediaUrl value object', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'data:image/png;base64,abc',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.facePhotoUrl).toBeInstanceOf(MediaUrl);
|
||||||
|
expect(request.facePhotoUrl.value).toBe('data:image/png;base64,abc');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('accepts http URL for facePhotoUrl', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: 'https://example.com/face.png',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.facePhotoUrl.value).toBe('https://example.com/face.png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('accepts root-relative path for facePhotoUrl', () => {
|
||||||
|
const request = AvatarGenerationRequest.create({
|
||||||
|
id: 'req-1',
|
||||||
|
userId: 'user-1',
|
||||||
|
facePhotoUrl: '/images/face.png',
|
||||||
|
suitColor: 'red',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(request.facePhotoUrl.value).toBe('/images/face.png');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -1,7 +1,307 @@
|
|||||||
import * as mod from '@core/media/domain/entities/Media';
|
import { Media } from './Media';
|
||||||
|
import { MediaUrl } from '../value-objects/MediaUrl';
|
||||||
|
|
||||||
describe('media/domain/entities/Media.ts', () => {
|
describe('Media', () => {
|
||||||
it('imports', () => {
|
describe('create', () => {
|
||||||
expect(mod).toBeTruthy();
|
it('creates a new media with required properties', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.id).toBe('media-1');
|
||||||
|
expect(media.filename).toBe('avatar.png');
|
||||||
|
expect(media.originalName).toBe('avatar.png');
|
||||||
|
expect(media.mimeType).toBe('image/png');
|
||||||
|
expect(media.size).toBe(123);
|
||||||
|
expect(media.url).toBeInstanceOf(MediaUrl);
|
||||||
|
expect(media.url.value).toBe('https://example.com/avatar.png');
|
||||||
|
expect(media.type).toBe('image');
|
||||||
|
expect(media.uploadedBy).toBe('user-1');
|
||||||
|
expect(media.uploadedAt).toBeInstanceOf(Date);
|
||||||
|
expect(media.metadata).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('creates media with metadata', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
metadata: { width: 100, height: 100 },
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.metadata).toEqual({ width: 100, height: 100 });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when filename is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: '',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
})
|
||||||
|
).toThrow('Filename is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when url is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: '',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
})
|
||||||
|
).toThrow('URL is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when uploadedBy is missing', () => {
|
||||||
|
expect(() =>
|
||||||
|
Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: '',
|
||||||
|
})
|
||||||
|
).toThrow('Uploaded by is required');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when url is invalid', () => {
|
||||||
|
expect(() =>
|
||||||
|
Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'invalid-url',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
})
|
||||||
|
).toThrow();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('reconstitute', () => {
|
||||||
|
it('reconstitutes a media from props', () => {
|
||||||
|
const uploadedAt = new Date('2024-01-01T00:00:00.000Z');
|
||||||
|
const media = Media.reconstitute({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
uploadedAt,
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.id).toBe('media-1');
|
||||||
|
expect(media.filename).toBe('avatar.png');
|
||||||
|
expect(media.originalName).toBe('avatar.png');
|
||||||
|
expect(media.mimeType).toBe('image/png');
|
||||||
|
expect(media.size).toBe(123);
|
||||||
|
expect(media.url.value).toBe('https://example.com/avatar.png');
|
||||||
|
expect(media.type).toBe('image');
|
||||||
|
expect(media.uploadedBy).toBe('user-1');
|
||||||
|
expect(media.uploadedAt).toEqual(uploadedAt);
|
||||||
|
expect(media.metadata).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('reconstitutes a media with metadata', () => {
|
||||||
|
const media = Media.reconstitute({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
uploadedAt: new Date(),
|
||||||
|
metadata: { width: 100, height: 100 },
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.metadata).toEqual({ width: 100, height: 100 });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('reconstitutes a video media', () => {
|
||||||
|
const media = Media.reconstitute({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'video.mp4',
|
||||||
|
originalName: 'video.mp4',
|
||||||
|
mimeType: 'video/mp4',
|
||||||
|
size: 1024,
|
||||||
|
url: 'https://example.com/video.mp4',
|
||||||
|
type: 'video',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
uploadedAt: new Date(),
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.type).toBe('video');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('reconstitutes a document media', () => {
|
||||||
|
const media = Media.reconstitute({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'document.pdf',
|
||||||
|
originalName: 'document.pdf',
|
||||||
|
mimeType: 'application/pdf',
|
||||||
|
size: 2048,
|
||||||
|
url: 'https://example.com/document.pdf',
|
||||||
|
type: 'document',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
uploadedAt: new Date(),
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.type).toBe('document');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('toProps', () => {
|
||||||
|
it('returns correct props for a new media', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = media.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('media-1');
|
||||||
|
expect(props.filename).toBe('avatar.png');
|
||||||
|
expect(props.originalName).toBe('avatar.png');
|
||||||
|
expect(props.mimeType).toBe('image/png');
|
||||||
|
expect(props.size).toBe(123);
|
||||||
|
expect(props.url).toBe('https://example.com/avatar.png');
|
||||||
|
expect(props.type).toBe('image');
|
||||||
|
expect(props.uploadedBy).toBe('user-1');
|
||||||
|
expect(props.uploadedAt).toBeInstanceOf(Date);
|
||||||
|
expect(props.metadata).toBeUndefined();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns correct props for a media with metadata', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
metadata: { width: 100, height: 100 },
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = media.toProps();
|
||||||
|
|
||||||
|
expect(props.metadata).toEqual({ width: 100, height: 100 });
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns correct props for a reconstituted media', () => {
|
||||||
|
const uploadedAt = new Date('2024-01-01T00:00:00.000Z');
|
||||||
|
const media = Media.reconstitute({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
uploadedAt,
|
||||||
|
metadata: { width: 100, height: 100 },
|
||||||
|
});
|
||||||
|
|
||||||
|
const props = media.toProps();
|
||||||
|
|
||||||
|
expect(props.id).toBe('media-1');
|
||||||
|
expect(props.filename).toBe('avatar.png');
|
||||||
|
expect(props.originalName).toBe('avatar.png');
|
||||||
|
expect(props.mimeType).toBe('image/png');
|
||||||
|
expect(props.size).toBe(123);
|
||||||
|
expect(props.url).toBe('https://example.com/avatar.png');
|
||||||
|
expect(props.type).toBe('image');
|
||||||
|
expect(props.uploadedBy).toBe('user-1');
|
||||||
|
expect(props.uploadedAt).toEqual(uploadedAt);
|
||||||
|
expect(props.metadata).toEqual({ width: 100, height: 100 });
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('value object validation', () => {
|
||||||
|
it('validates url as MediaUrl value object', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'https://example.com/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.url).toBeInstanceOf(MediaUrl);
|
||||||
|
expect(media.url.value).toBe('https://example.com/avatar.png');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('accepts data URI for url', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: 'data:image/png;base64,abc',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.url.value).toBe('data:image/png;base64,abc');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('accepts root-relative path for url', () => {
|
||||||
|
const media = Media.create({
|
||||||
|
id: 'media-1',
|
||||||
|
filename: 'avatar.png',
|
||||||
|
originalName: 'avatar.png',
|
||||||
|
mimeType: 'image/png',
|
||||||
|
size: 123,
|
||||||
|
url: '/images/avatar.png',
|
||||||
|
type: 'image',
|
||||||
|
uploadedBy: 'user-1',
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(media.url.value).toBe('/images/avatar.png');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
223
core/media/domain/services/MediaGenerationService.test.ts
Normal file
223
core/media/domain/services/MediaGenerationService.test.ts
Normal file
@@ -0,0 +1,223 @@
|
|||||||
|
import { MediaGenerationService } from './MediaGenerationService';
|
||||||
|
|
||||||
|
describe('MediaGenerationService', () => {
|
||||||
|
let service: MediaGenerationService;
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
service = new MediaGenerationService();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('generateTeamLogo', () => {
|
||||||
|
it('generates a deterministic logo URL for a team', () => {
|
||||||
|
const url1 = service.generateTeamLogo('team-123');
|
||||||
|
const url2 = service.generateTeamLogo('team-123');
|
||||||
|
|
||||||
|
expect(url1).toBe(url2);
|
||||||
|
expect(url1).toContain('https://picsum.photos/seed/team-123/200/200');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates different URLs for different team IDs', () => {
|
||||||
|
const url1 = service.generateTeamLogo('team-123');
|
||||||
|
const url2 = service.generateTeamLogo('team-456');
|
||||||
|
|
||||||
|
expect(url1).not.toBe(url2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates URL with correct format', () => {
|
||||||
|
const url = service.generateTeamLogo('team-123');
|
||||||
|
|
||||||
|
expect(url).toMatch(/^https:\/\/picsum\.photos\/seed\/team-123\/200\/200$/);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('generateLeagueLogo', () => {
|
||||||
|
it('generates a deterministic logo URL for a league', () => {
|
||||||
|
const url1 = service.generateLeagueLogo('league-123');
|
||||||
|
const url2 = service.generateLeagueLogo('league-123');
|
||||||
|
|
||||||
|
expect(url1).toBe(url2);
|
||||||
|
expect(url1).toContain('https://picsum.photos/seed/l-league-123/200/200');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates different URLs for different league IDs', () => {
|
||||||
|
const url1 = service.generateLeagueLogo('league-123');
|
||||||
|
const url2 = service.generateLeagueLogo('league-456');
|
||||||
|
|
||||||
|
expect(url1).not.toBe(url2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates URL with correct format', () => {
|
||||||
|
const url = service.generateLeagueLogo('league-123');
|
||||||
|
|
||||||
|
expect(url).toMatch(/^https:\/\/picsum\.photos\/seed\/l-league-123\/200\/200$/);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('generateDriverAvatar', () => {
|
||||||
|
it('generates a deterministic avatar URL for a driver', () => {
|
||||||
|
const url1 = service.generateDriverAvatar('driver-123');
|
||||||
|
const url2 = service.generateDriverAvatar('driver-123');
|
||||||
|
|
||||||
|
expect(url1).toBe(url2);
|
||||||
|
expect(url1).toContain('https://i.pravatar.cc/150?u=driver-123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates different URLs for different driver IDs', () => {
|
||||||
|
const url1 = service.generateDriverAvatar('driver-123');
|
||||||
|
const url2 = service.generateDriverAvatar('driver-456');
|
||||||
|
|
||||||
|
expect(url1).not.toBe(url2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates URL with correct format', () => {
|
||||||
|
const url = service.generateDriverAvatar('driver-123');
|
||||||
|
|
||||||
|
expect(url).toMatch(/^https:\/\/i\.pravatar\.cc\/150\?u=driver-123$/);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('generateLeagueCover', () => {
|
||||||
|
it('generates a deterministic cover URL for a league', () => {
|
||||||
|
const url1 = service.generateLeagueCover('league-123');
|
||||||
|
const url2 = service.generateLeagueCover('league-123');
|
||||||
|
|
||||||
|
expect(url1).toBe(url2);
|
||||||
|
expect(url1).toContain('https://picsum.photos/seed/c-league-123/800/200');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates different URLs for different league IDs', () => {
|
||||||
|
const url1 = service.generateLeagueCover('league-123');
|
||||||
|
const url2 = service.generateLeagueCover('league-456');
|
||||||
|
|
||||||
|
expect(url1).not.toBe(url2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates URL with correct format', () => {
|
||||||
|
const url = service.generateLeagueCover('league-123');
|
||||||
|
|
||||||
|
expect(url).toMatch(/^https:\/\/picsum\.photos\/seed\/c-league-123\/800\/200$/);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('generateDefaultPNG', () => {
|
||||||
|
it('generates a PNG buffer for a variant', () => {
|
||||||
|
const buffer = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
expect(buffer).toBeInstanceOf(Buffer);
|
||||||
|
expect(buffer.length).toBeGreaterThan(0);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates deterministic PNG for same variant', () => {
|
||||||
|
const buffer1 = service.generateDefaultPNG('test-variant');
|
||||||
|
const buffer2 = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
expect(buffer1.equals(buffer2)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates different PNGs for different variants', () => {
|
||||||
|
const buffer1 = service.generateDefaultPNG('variant-1');
|
||||||
|
const buffer2 = service.generateDefaultPNG('variant-2');
|
||||||
|
|
||||||
|
expect(buffer1.equals(buffer2)).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates valid PNG header', () => {
|
||||||
|
const buffer = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
// PNG signature: 89 50 4E 47 0D 0A 1A 0A
|
||||||
|
expect(buffer[0]).toBe(0x89);
|
||||||
|
expect(buffer[1]).toBe(0x50); // 'P'
|
||||||
|
expect(buffer[2]).toBe(0x4E); // 'N'
|
||||||
|
expect(buffer[3]).toBe(0x47); // 'G'
|
||||||
|
expect(buffer[4]).toBe(0x0D);
|
||||||
|
expect(buffer[5]).toBe(0x0A);
|
||||||
|
expect(buffer[6]).toBe(0x1A);
|
||||||
|
expect(buffer[7]).toBe(0x0A);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates PNG with IHDR chunk', () => {
|
||||||
|
const buffer = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
// IHDR chunk starts at byte 8
|
||||||
|
// Length: 13 (0x00 0x00 0x00 0x0D)
|
||||||
|
expect(buffer[8]).toBe(0x00);
|
||||||
|
expect(buffer[9]).toBe(0x00);
|
||||||
|
expect(buffer[10]).toBe(0x00);
|
||||||
|
expect(buffer[11]).toBe(0x0D);
|
||||||
|
// Type: IHDR (0x49 0x48 0x44 0x52)
|
||||||
|
expect(buffer[12]).toBe(0x49); // 'I'
|
||||||
|
expect(buffer[13]).toBe(0x48); // 'H'
|
||||||
|
expect(buffer[14]).toBe(0x44); // 'D'
|
||||||
|
expect(buffer[15]).toBe(0x52); // 'R'
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates PNG with 1x1 dimensions', () => {
|
||||||
|
const buffer = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
// Width: 1 (0x00 0x00 0x00 0x01) at byte 16
|
||||||
|
expect(buffer[16]).toBe(0x00);
|
||||||
|
expect(buffer[17]).toBe(0x00);
|
||||||
|
expect(buffer[18]).toBe(0x00);
|
||||||
|
expect(buffer[19]).toBe(0x01);
|
||||||
|
// Height: 1 (0x00 0x00 0x00 0x01) at byte 20
|
||||||
|
expect(buffer[20]).toBe(0x00);
|
||||||
|
expect(buffer[21]).toBe(0x00);
|
||||||
|
expect(buffer[22]).toBe(0x00);
|
||||||
|
expect(buffer[23]).toBe(0x01);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates PNG with RGB color type', () => {
|
||||||
|
const buffer = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
// Color type: RGB (0x02) at byte 25
|
||||||
|
expect(buffer[25]).toBe(0x02);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates PNG with RGB pixel data', () => {
|
||||||
|
const buffer = service.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
// RGB pixel data should be present in IDAT chunk
|
||||||
|
// IDAT chunk starts after IHDR (byte 37)
|
||||||
|
// We should find RGB values somewhere in the buffer
|
||||||
|
const hasRGB = buffer.some((byte, index) => {
|
||||||
|
// Check if we have a sequence that looks like RGB data
|
||||||
|
// This is a simplified check
|
||||||
|
return index > 37 && index < buffer.length - 10;
|
||||||
|
});
|
||||||
|
|
||||||
|
expect(hasRGB).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('deterministic generation', () => {
|
||||||
|
it('generates same team logo for same team ID across different instances', () => {
|
||||||
|
const service1 = new MediaGenerationService();
|
||||||
|
const service2 = new MediaGenerationService();
|
||||||
|
|
||||||
|
const url1 = service1.generateTeamLogo('team-123');
|
||||||
|
const url2 = service2.generateTeamLogo('team-123');
|
||||||
|
|
||||||
|
expect(url1).toBe(url2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates same driver avatar for same driver ID across different instances', () => {
|
||||||
|
const service1 = new MediaGenerationService();
|
||||||
|
const service2 = new MediaGenerationService();
|
||||||
|
|
||||||
|
const url1 = service1.generateDriverAvatar('driver-123');
|
||||||
|
const url2 = service2.generateDriverAvatar('driver-123');
|
||||||
|
|
||||||
|
expect(url1).toBe(url2);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('generates same PNG for same variant across different instances', () => {
|
||||||
|
const service1 = new MediaGenerationService();
|
||||||
|
const service2 = new MediaGenerationService();
|
||||||
|
|
||||||
|
const buffer1 = service1.generateDefaultPNG('test-variant');
|
||||||
|
const buffer2 = service2.generateDefaultPNG('test-variant');
|
||||||
|
|
||||||
|
expect(buffer1.equals(buffer2)).toBe(true);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
@@ -1,7 +1,83 @@
|
|||||||
import * as mod from '@core/media/domain/value-objects/AvatarId';
|
import { AvatarId } from './AvatarId';
|
||||||
|
|
||||||
describe('media/domain/value-objects/AvatarId.ts', () => {
|
describe('AvatarId', () => {
|
||||||
it('imports', () => {
|
describe('create', () => {
|
||||||
expect(mod).toBeTruthy();
|
it('creates from valid string', () => {
|
||||||
|
const avatarId = AvatarId.create('avatar-123');
|
||||||
|
|
||||||
|
expect(avatarId.toString()).toBe('avatar-123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('trims whitespace', () => {
|
||||||
|
const avatarId = AvatarId.create(' avatar-123 ');
|
||||||
|
|
||||||
|
expect(avatarId.toString()).toBe('avatar-123');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when empty', () => {
|
||||||
|
expect(() => AvatarId.create('')).toThrow('Avatar ID cannot be empty');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when only whitespace', () => {
|
||||||
|
expect(() => AvatarId.create(' ')).toThrow('Avatar ID cannot be empty');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when null', () => {
|
||||||
|
expect(() => AvatarId.create(null as any)).toThrow('Avatar ID cannot be empty');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('throws error when undefined', () => {
|
||||||
|
expect(() => AvatarId.create(undefined as any)).toThrow('Avatar ID cannot be empty');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('toString', () => {
|
||||||
|
it('returns the string value', () => {
|
||||||
|
const avatarId = AvatarId.create('avatar-123');
|
||||||
|
|
||||||
|
expect(avatarId.toString()).toBe('avatar-123');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('equals', () => {
|
||||||
|
it('returns true for equal avatar IDs', () => {
|
||||||
|
const avatarId1 = AvatarId.create('avatar-123');
|
||||||
|
const avatarId2 = AvatarId.create('avatar-123');
|
||||||
|
|
||||||
|
expect(avatarId1.equals(avatarId2)).toBe(true);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns false for different avatar IDs', () => {
|
||||||
|
const avatarId1 = AvatarId.create('avatar-123');
|
||||||
|
const avatarId2 = AvatarId.create('avatar-456');
|
||||||
|
|
||||||
|
expect(avatarId1.equals(avatarId2)).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('returns false for different case', () => {
|
||||||
|
const avatarId1 = AvatarId.create('avatar-123');
|
||||||
|
const avatarId2 = AvatarId.create('AVATAR-123');
|
||||||
|
|
||||||
|
expect(avatarId1.equals(avatarId2)).toBe(false);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('value object equality', () => {
|
||||||
|
it('implements value-based equality', () => {
|
||||||
|
const avatarId1 = AvatarId.create('avatar-123');
|
||||||
|
const avatarId2 = AvatarId.create('avatar-123');
|
||||||
|
const avatarId3 = AvatarId.create('avatar-456');
|
||||||
|
|
||||||
|
expect(avatarId1.equals(avatarId2)).toBe(true);
|
||||||
|
expect(avatarId1.equals(avatarId3)).toBe(false);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('maintains equality after toString', () => {
|
||||||
|
const avatarId1 = AvatarId.create('avatar-123');
|
||||||
|
const avatarId2 = AvatarId.create('avatar-123');
|
||||||
|
|
||||||
|
expect(avatarId1.toString()).toBe(avatarId2.toString());
|
||||||
|
expect(avatarId1.equals(avatarId2)).toBe(true);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
28
package-lock.json
generated
28
package-lock.json
generated
@@ -251,6 +251,27 @@
|
|||||||
"undici-types": "~6.21.0"
|
"undici-types": "~6.21.0"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"apps/companion/node_modules/@types/react": {
|
||||||
|
"version": "18.3.27",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.27.tgz",
|
||||||
|
"integrity": "sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"@types/prop-types": "*",
|
||||||
|
"csstype": "^3.2.2"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"apps/companion/node_modules/@types/react-dom": {
|
||||||
|
"version": "18.3.7",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.7.tgz",
|
||||||
|
"integrity": "sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT",
|
||||||
|
"peerDependencies": {
|
||||||
|
"@types/react": "^18.0.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"apps/companion/node_modules/path-to-regexp": {
|
"apps/companion/node_modules/path-to-regexp": {
|
||||||
"version": "8.3.0",
|
"version": "8.3.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
@@ -4717,6 +4738,13 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT"
|
"license": "MIT"
|
||||||
},
|
},
|
||||||
|
"node_modules/@types/prop-types": {
|
||||||
|
"version": "15.7.15",
|
||||||
|
"resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.15.tgz",
|
||||||
|
"integrity": "sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==",
|
||||||
|
"dev": true,
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/@types/qs": {
|
"node_modules/@types/qs": {
|
||||||
"version": "6.14.0",
|
"version": "6.14.0",
|
||||||
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz",
|
"resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.14.0.tgz",
|
||||||
|
|||||||
Reference in New Issue
Block a user