Files
marketplaces/src/app/features/admin/users/facade/admin-users.facade.spec.ts
sdarbinyan 90bd05aa98
Some checks failed
Architecture Governance / architecture (push) Has been cancelled
test: users facade + cart service coverage (F63 complete)
Closes out F63 - every domain named in the delivery plan's Q7 gap now has
facade-level coverage.

admin-users.facade.spec.ts (14 tests): sessions/audit dialog targeting (a
revokeSession must reload the CURRENTLY open user's sessions, not whichever
user happened to be open first), invite() trims and rejects whitespace-only
email, roleName() falls back to the raw id rather than rendering blank for
an unmapped role.

cart.service.spec.ts (23 tests) - this had zero coverage despite feeding
totalWithDelivery and allRequiredDeliveriesSelected directly into
cart.component.ts's checkout gate and the offers/qty payload sent to
POST /api/v2/storefront/checkout, the exact contract this session's F14-F16
rewired. A regression here would silently let checkout proceed with a
missing delivery selection, or compute the wrong total. Covers the delivery-
requirement matrix explicitly (digital items never require selection,
deliverySelectionRequired: false overrides having options present, a
selection satisfies the requirement once made) and the quantity-to-zero ->
line-removal behavior in updateQuantity.

Verified: 237/237 unit tests (37 new since the last commit), arch:check
clean, 5/5 E2E, production build succeeds.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-18 21:44:08 +04:00

147 lines
5.1 KiB
TypeScript

import { TestBed } from '@angular/core/testing';
import { of, throwError } from 'rxjs';
import { AdminUsersFacade } from './admin-users.facade';
import { ADMIN_USERS_GATEWAY } from '../services/admin-users-gateway.token';
import { AdminUsersGateway } from '../services/admin-users-gateway.interface';
import { AdminUser, AdminUserRoleRecord } from '../models/admin-user.model';
function user(overrides: Partial<AdminUser> = {}): AdminUser {
return { id: 'u1', name: 'Alice', email: 'a@example.com', roleId: 'role1', scope: 'marketplace', status: 'active', ...overrides } as AdminUser;
}
describe('AdminUsersFacade', () => {
let facade: AdminUsersFacade;
let gateway: jasmine.SpyObj<AdminUsersGateway>;
beforeEach(() => {
gateway = jasmine.createSpyObj<AdminUsersGateway>('AdminUsersGateway', [
'loadUsers', 'loadRoles', 'loadInvitations', 'loadSessions', 'loadAudit',
'setUserRole', 'setUserStatus', 'inviteUser', 'revokeInvitation', 'revokeSession',
]);
TestBed.configureTestingModule({ providers: [{ provide: ADMIN_USERS_GATEWAY, useValue: gateway }] });
facade = TestBed.inject(AdminUsersFacade);
});
it('loadAll populates users, roles, and invitations independently', () => {
gateway.loadUsers.and.returnValue(of([user()]));
gateway.loadRoles.and.returnValue(of([{ id: 'role1', name: 'Manager' } as AdminUserRoleRecord]));
gateway.loadInvitations.and.returnValue(of([]));
facade.loadAll();
expect(facade.users().length).toBe(1);
expect(facade.roles().length).toBe(1);
});
it('a users-load failure clears users and sets error, without blocking roles/invitations', () => {
gateway.loadUsers.and.returnValue(throwError(() => new Error('x')));
gateway.loadRoles.and.returnValue(of([{ id: 'role1', name: 'Manager' } as AdminUserRoleRecord]));
gateway.loadInvitations.and.returnValue(of([]));
facade.loadAll();
expect(facade.users()).toEqual([]);
expect(facade.error()).toBeTrue();
expect(facade.roles().length).toBe(1);
});
describe('roleName', () => {
it('resolves a known role id to its display name', () => {
gateway.loadUsers.and.returnValue(of([]));
gateway.loadRoles.and.returnValue(of([{ id: 'role1', name: 'Manager' } as AdminUserRoleRecord]));
gateway.loadInvitations.and.returnValue(of([]));
facade.loadAll();
expect(facade.roleName('role1')).toBe('Manager');
});
it('falls back to the raw id when the role is unknown, rather than showing blank', () => {
expect(facade.roleName('mystery-role')).toBe('mystery-role');
});
});
describe('invite', () => {
it('does not call the gateway for a whitespace-only email', () => {
facade.invite(' ', 'role1', 'marketplace');
expect(gateway.inviteUser).not.toHaveBeenCalled();
});
it('trims the email before sending it', () => {
gateway.inviteUser.and.returnValue(of({} as any));
gateway.loadUsers.and.returnValue(of([]));
gateway.loadRoles.and.returnValue(of([]));
gateway.loadInvitations.and.returnValue(of([]));
facade.invite(' a@example.com ', 'role1', 'marketplace');
expect(gateway.inviteUser).toHaveBeenCalledWith('a@example.com', 'role1', 'marketplace');
});
it('sets mutationError on failure', () => {
gateway.inviteUser.and.returnValue(throwError(() => new Error('x')));
facade.invite('a@example.com', 'role1', 'marketplace');
expect(facade.mutationError()).toBe('common.errorDescription');
});
});
describe('sessions dialog', () => {
it('openSessions sets the target and loads that user\'s sessions', () => {
gateway.loadSessions.and.returnValue(of([{ id: 's1' } as any]));
facade.openSessions(user());
expect(facade.sessionsTarget()?.id).toBe('u1');
expect(facade.sessions().length).toBe(1);
});
it('closeSessions clears the target', () => {
gateway.loadSessions.and.returnValue(of([]));
facade.openSessions(user());
facade.closeSessions();
expect(facade.sessionsTarget()).toBeNull();
});
it('revokeSession reloads sessions for the currently open user, not a stale one', () => {
gateway.loadSessions.and.returnValue(of([]));
gateway.revokeSession.and.returnValue(of(undefined));
facade.openSessions(user({ id: 'u1' }));
facade.revokeSession('s1');
expect(gateway.loadSessions).toHaveBeenCalledWith('u1');
});
it('revokeSession does nothing extra when no sessions dialog is open', () => {
gateway.revokeSession.and.returnValue(of(undefined));
facade.revokeSession('s1');
expect(gateway.loadSessions).not.toHaveBeenCalled();
});
});
describe('audit dialog', () => {
it('openAudit loads entries for the target user', () => {
gateway.loadAudit.and.returnValue(of([{ id: 'a1' } as any]));
facade.openAudit(user());
expect(facade.audit().length).toBe(1);
});
it('closeAudit clears the target', () => {
gateway.loadAudit.and.returnValue(of([]));
facade.openAudit(user());
facade.closeAudit();
expect(facade.auditTarget()).toBeNull();
});
});
});