/** * @license * Copyright 2025 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { renderWithProviders } from '../../test-utils/render.js'; import { UserIdentity } from './UserIdentity.js'; import { describe, it, expect, vi, beforeEach } from 'vitest'; import { makeFakeConfig, AuthType, UserAccountManager, type ContentGeneratorConfig, } from '@google/gemini-cli-core'; // Mock UserAccountManager to control cached account vi.mock('@google/gemini-cli-core', async (importOriginal) => { const original = await importOriginal(); return { ...original, UserAccountManager: vi.fn().mockImplementation(() => ({ getCachedGoogleAccount: () => 'test@example.com', })), }; }); describe('', () => { beforeEach(() => { vi.clearAllMocks(); }); it('should render login message and auth indicator', () => { const mockConfig = makeFakeConfig(); vi.spyOn(mockConfig, 'getContentGeneratorConfig').mockReturnValue({ authType: AuthType.LOGIN_WITH_GOOGLE, model: 'gemini-pro', } as unknown as ContentGeneratorConfig); vi.spyOn(mockConfig, 'getUserTierName').mockReturnValue(undefined); const { lastFrame, unmount } = renderWithProviders( , ); const output = lastFrame(); expect(output).toContain('Logged in with Google: test@example.com'); expect(output).toContain('/auth'); unmount(); }); it('should render login message without colon if email is missing', () => { // Modify the mock for this specific test vi.mocked(UserAccountManager).mockImplementationOnce( () => ({ getCachedGoogleAccount: () => undefined, }) as unknown as UserAccountManager, ); const mockConfig = makeFakeConfig(); vi.spyOn(mockConfig, 'getContentGeneratorConfig').mockReturnValue({ authType: AuthType.LOGIN_WITH_GOOGLE, model: 'gemini-pro', } as unknown as ContentGeneratorConfig); vi.spyOn(mockConfig, 'getUserTierName').mockReturnValue(undefined); const { lastFrame, unmount } = renderWithProviders( , ); const output = lastFrame(); expect(output).toContain('Logged in with Google'); expect(output).not.toContain('Logged in with Google:'); expect(output).toContain('/auth'); unmount(); }); it('should render plan name on a separate line if provided', () => { const mockConfig = makeFakeConfig(); vi.spyOn(mockConfig, 'getContentGeneratorConfig').mockReturnValue({ authType: AuthType.LOGIN_WITH_GOOGLE, model: 'gemini-pro', } as unknown as ContentGeneratorConfig); vi.spyOn(mockConfig, 'getUserTierName').mockReturnValue('Premium Plan'); const { lastFrame, unmount } = renderWithProviders( , ); const output = lastFrame(); expect(output).toContain('Logged in with Google: test@example.com'); expect(output).toContain('/auth'); expect(output).toContain('Plan: Premium Plan'); // Check for two lines (or more if wrapped, but here it should be separate) const lines = output?.split('\n').filter((line) => line.trim().length > 0); expect(lines?.some((line) => line.includes('Logged in with Google'))).toBe( true, ); expect(lines?.some((line) => line.includes('Plan: Premium Plan'))).toBe( true, ); unmount(); }); it('should not render if authType is missing', () => { const mockConfig = makeFakeConfig(); vi.spyOn(mockConfig, 'getContentGeneratorConfig').mockReturnValue( {} as unknown as ContentGeneratorConfig, ); const { lastFrame, unmount } = renderWithProviders( , ); expect(lastFrame()).toBe(''); unmount(); }); it('should render non-Google auth message', () => { const mockConfig = makeFakeConfig(); vi.spyOn(mockConfig, 'getContentGeneratorConfig').mockReturnValue({ authType: AuthType.USE_GEMINI, model: 'gemini-pro', } as unknown as ContentGeneratorConfig); vi.spyOn(mockConfig, 'getUserTierName').mockReturnValue(undefined); const { lastFrame, unmount } = renderWithProviders( , ); const output = lastFrame(); expect(output).toContain(`Authenticated with ${AuthType.USE_GEMINI}`); expect(output).toContain('/auth'); unmount(); }); });