Probar gratis
8 min lectura Guide 856 of 877

Patrones y Prácticas de Domain-Driven Design

Domain-Driven Design (DDD) es un enfoque de desarrollo de software que se enfoca en modelar dominios de negocio complejos a través de patrones estratégicos y tácticos. DDD ayuda a los equipos a crear software que se alinea estrechamente con las necesidades de negocio mientras mantiene excelencia técnica y adaptabilidad.

Domain-Driven Design Estratégico

Contextos Limitados

Los contextos limitados definen los límites dentro de los cuales un modelo de dominio particular se aplica:

Patrones de Mapeo de Contexto:

Sales Context ──► Customer Context ──► Support Context
     │                    │                    │
     └─ Shared Kernel ────┼─ Customer ─────────┘
                          │
                          └─ Separate Ways

Relaciones de Contexto:

  • Shared Kernel: Subconjunto común de modelo de dominio compartido entre contextos
  • Customer-Supplier: Un contexto depende de otro
  • Conformist: Sigue el modelo de otro contexto
  • Anti-Corruption Layer: Traduce entre diferentes modelos

Lenguaje Ubicuo

Colaboración con Experto de Dominio:

Business Analyst ──► Domain Expert ──► Developer ──► Code
     │                      │               │          │
     └─ Business Terms ─────┼─ Ubiquitous ──┼─ Domain ─┘
                            │   Language    │  Objects
                            └───────────────┘

Evolución del Lenguaje:

  • Comience con terminología de negocio
  • Refine a través de conversaciones
  • Refleje cambios en código inmediatamente
  • Use los mismos términos en documentación, pruebas y discusiones

Domain-Driven Design Táctico

Patrones de la Capa de Dominio

Entidades

Las entidades representan objetos de dominio con identidad y ciclo de vida:

Características de Entidad:

class Customer {
  private readonly id: CustomerId;
  private name: PersonName;
  private email: EmailAddress;
  private status: CustomerStatus;
  private addresses: Address[];

  constructor(id: CustomerId, name: PersonName, email: EmailAddress) {
    this.id = id;
    this.name = name;
    this.email = email;
    this.status = CustomerStatus.ACTIVE;
    this.addresses = [];
  }

  changeName(newName: PersonName): void {
    if (this.status !== CustomerStatus.ACTIVE) {
      throw new DomainError('Cannot change name of inactive customer');
    }
    this.name = newName;
    this.addDomainEvent(new CustomerNameChanged(this.id, newName));
  }

  equals(other: Customer): boolean {
    return this.id.equals(other.id);
  }
}

Objetos de Valor

Los objetos de valor son inmutables y definidos por sus atributos:

Implementación de Objeto de Valor:

class Money {
  private readonly amount: number;
  private readonly currency: Currency;

  constructor(amount: number, currency: Currency) {
    if (amount < 0) {
      throw new DomainError('Amount cannot be negative');
    }
    this.amount = amount;
    this.currency = currency;
  }

  add(other: Money): Money {
    if (!this.currency.equals(other.currency)) {
      throw new DomainError('Cannot add different currencies');
    }
    return new Money(this.amount + other.amount, this.currency);
  }

  multiply(factor: number): Money {
    return new Money(this.amount * factor, this.currency);
  }

  equals(other: Money): boolean {
    return this.amount === other.amount && this.currency.equals(other.currency);
  }
}

Agregados

Los agregados definen límites de consistencia y encapsulan reglas de negocio:

Patrón Aggregate Root:

class Order {
  private readonly id: OrderId;
  private readonly customerId: CustomerId;
  private status: OrderStatus;
  private items: OrderItem[];
  private totalAmount: Money;

  constructor(id: OrderId, customerId: CustomerId) {
    this.id = id;
    this.customerId = customerId;
    this.status = OrderStatus.DRAFT;
    this.items = [];
    this.totalAmount = Money.zero(Currency.USD);
  }

  addItem(productId: ProductId, quantity: number, unitPrice: Money): void {
    if (this.status !== OrderStatus.DRAFT) {
      throw new DomainError('Cannot modify confirmed order');
    }

    const existingItem = this.items.find(item => item.productId.equals(productId));
    if (existingItem) {
      existingItem.increaseQuantity(quantity);
    } else {
      this.items.push(new OrderItem(productId, quantity, unitPrice));
    }

    this.recalculateTotal();
  }

  confirm(): void {
    if (this.items.length === 0) {
      throw new DomainError('Cannot confirm empty order');
    }
    this.status = OrderStatus.CONFIRMED;
    this.addDomainEvent(new OrderConfirmed(this.id, this.totalAmount));
  }
}

Servicios de Dominio

Los servicios contienen lógica de negocio que no encaja naturalmente en entidades u objetos de valor:

Ejemplo de Servicio de Dominio:

class PricingService {
  constructor(
    private readonly discountRepository: DiscountRepository,
    private readonly taxCalculator: TaxCalculator
  ) {}

  calculateTotal(order: Order, customer: Customer): Money {
    let subtotal = order.getSubtotal();

    // Apply customer discounts
    const customerDiscounts = this.discountRepository.findByCustomer(customer.id);
    for (const discount of customerDiscounts) {
      if (discount.appliesTo(subtotal)) {
        subtotal = discount.applyTo(subtotal);
      }
    }

    // Calculate taxes
    const taxAmount = this.taxCalculator.calculateTax(subtotal, customer.address);

    return subtotal.add(taxAmount);
  }
}

Eventos de Dominio

Los eventos de dominio representan ocurrencias significativas de negocio:

Patrón de Evento de Dominio:

abstract class DomainEvent {
  public readonly eventId: string;
  public readonly aggregateId: string;
  public readonly eventVersion: number;
  public readonly occurredOn: Date;

  constructor(aggregateId: string) {
    this.eventId = uuidv4();
    this.aggregateId = aggregateId;
    this.eventVersion = 1;
    this.occurredOn = new Date();
  }
}

class OrderPlaced extends DomainEvent {
  constructor(
    public readonly orderId: OrderId,
    public readonly customerId: CustomerId,
    public readonly totalAmount: Money
  ) {
    super(orderId.toString());
  }
}

Capa de Aplicación

Patrones de Comando y Consulta

Patrón de Comando:

abstract class Command {
  public readonly commandId: string;
  public readonly timestamp: Date;

  constructor() {
    this.commandId = uuidv4();
    this.timestamp = new Date();
  }
}

class PlaceOrderCommand extends Command {
  constructor(
    public readonly customerId: CustomerId,
    public readonly items: OrderItem[]
  ) {
    super();
  }
}

class CommandHandler {
  constructor(
    private readonly orderRepository: OrderRepository,
    private readonly domainEventPublisher: DomainEventPublisher
  ) {}

  async handle(command: PlaceOrderCommand): Promise<OrderId> {
    const order = Order.create(command.customerId);

    for (const item of command.items) {
      order.addItem(item.productId, item.quantity, item.unitPrice);
    }

    await this.orderRepository.save(order);
    await this.domainEventPublisher.publish(order.getDomainEvents());

    return order.id;
  }
}

Servicios de Aplicación

Capa de Servicio de Aplicación:

class OrderApplicationService {
  constructor(
    private readonly commandBus: CommandBus,
    private readonly queryBus: QueryBus
  ) {}

  async placeOrder(request: PlaceOrderRequest): Promise<PlaceOrderResponse> {
    const command = new PlaceOrderCommand(
      new CustomerId(request.customerId),
      request.items.map(item => new OrderItem(
        new ProductId(item.productId),
        item.quantity,
        new Money(item.unitPrice, Currency.USD)
      ))
    );

    const orderId = await this.commandBus.send(command);

    return { orderId: orderId.toString() };
  }

  async getOrderDetails(orderId: string): Promise<OrderDetailsDto> {
    const query = new GetOrderDetailsQuery(new OrderId(orderId));
    return await this.queryBus.send(query);
  }
}

Capa de Infraestructura

Patrón Repository

Implementación de Repository:

interface OrderRepository {
  save(order: Order): Promise<void>;
  findById(id: OrderId): Promise<Order | null>;
  findByCustomerId(customerId: CustomerId): Promise<Order[]>;
  nextIdentity(): OrderId;
}

class SqlOrderRepository implements OrderRepository {
  constructor(private readonly db: Database) {}

  async save(order: Order): Promise<void> {
    const data = this.mapToData(order);
    await this.db.orders.upsert({
      where: { id: order.id.toString() },
      update: data,
      create: data
    });
  }

  async findById(id: OrderId): Promise<Order | null> {
    const data = await this.db.orders.findUnique({
      where: { id: id.toString() }
    });

    return data ? this.mapToDomain(data) : null;
  }
}

Implementación de Mapeo de Contexto

Capa Anti-Corrupción

Implementación ACL:

class LegacySystemAdapter {
  constructor(private readonly legacyApi: LegacyApiClient) {}

  async getCustomer(customerId: string): Promise<Customer> {
    const legacyCustomer = await this.legacyApi.getCustomer(customerId);

    return new Customer(
      new CustomerId(legacyCustomer.id),
      new PersonName(legacyCustomer.firstName, legacyCustomer.lastName),
      new EmailAddress(legacyCustomer.email)
    );
  }

  async updateCustomer(customer: Customer): Promise<void> {
    await this.legacyApi.updateCustomer({
      id: customer.id.toString(),
      firstName: customer.name.firstName,
      lastName: customer.name.lastName,
      email: customer.email.toString()
    });
  }
}

Pruebas de Modelos de Dominio

Pruebas Unitarias de Lógica de Dominio

Prueba de Entidad:

describe('Customer', () => {
  it('should change name when active', () => {
    const customer = new Customer(
      new CustomerId('123'),
      new PersonName('John', 'Doe'),
      new EmailAddress('john@example.com')
    );

    customer.changeName(new PersonName('Jane', 'Doe'));

    expect(customer.name.firstName).toBe('Jane');
  });

  it('should not change name when inactive', () => {
    const customer = new Customer(/* ... */);
    customer.deactivate();

    expect(() => {
      customer.changeName(new PersonName('Jane', 'Doe'));
    }).toThrow(DomainError);
  });
});

Pruebas de Integración

Prueba de Repository:

describe('OrderRepository', () => {
  let repository: OrderRepository;
  let db: TestDatabase;

  beforeEach(async () => {
    db = await createTestDatabase();
    repository = new SqlOrderRepository(db);
  });

  it('should save and retrieve order', async () => {
    const order = Order.create(new CustomerId('123'));
    order.addItem(new ProductId('456'), 2, new Money(10, Currency.USD));

    await repository.save(order);
    const retrieved = await repository.findById(order.id);

    expect(retrieved?.id).toEqual(order.id);
    expect(retrieved?.getTotalAmount()).toEqual(new Money(20, Currency.USD));
  });
});

Anti-Patrones Comunes de DDD

Modelo de Dominio Anémico

Anti-Patrón:

// ❌ Anemic - no business logic
class Order {
  id: string;
  items: OrderItem[];
  status: string;

  // Just getters and setters
  getTotal(): number {
    return this.items.reduce((sum, item) => sum + item.price, 0);
  }
}

Enfoque Correcto:

// ✅ Rich domain model
class Order {
  // Business logic encapsulated
  calculateTotal(): Money {
    return this.items.reduce(
      (total, item) => total.add(item.getLineTotal()),
      Money.zero(this.currency)
    );
  }
}

Clases Dios

Anti-Patrón:

// ❌ God class - too many responsibilities
class OrderManager {
  createOrder() { /* ... */ }
  calculateTax() { /* ... */ }
  sendEmail() { /* ... */ }
  updateInventory() { /* ... */ }
}

Enfoque Correcto:

// ✅ Single responsibility classes
class OrderFactory { /* ... */ }
class TaxCalculator { /* ... */ }
class EmailService { /* ... */ }
class InventoryService { /* ... */ }

Integración con GitScrum

Modelado de Dominio en Gestión de Tareas

DDD para Gestión de Proyecto:

  • Modele proyectos como contextos limitados
  • Use eventos de dominio para cambios de estado de tareas
  • Implemente agregados para límites de sprint y proyecto

Lenguaje Ubicuo en Comunicación de Equipo

Comprensión Compartida:

  • Defina términos claros de dominio para tareas y flujos de trabajo
  • Use terminología consistente entre miembros del equipo
  • Refleje conceptos de dominio en configuraciones del tablero GitScrum

Soluciones Relacionadas