Skip to content
Snippets Groups Projects
Select Git revision
  • 1580a4fae325cce7ef8059334ce06b0df15a0ddb
  • main default protected
  • renovate/main-vitest-monorepo
  • next
  • fix/36615b-branch-reuse-no-cache
  • chore/punycode
  • fix/36615-branch-reuse-bug
  • renovate/main-redis-5.x
  • renovate/main-xmldoc-2.x
  • refactor/pin-new-value
  • feat/36219--git-x509-signing
  • feat/structured-logger
  • hotfix/39.264.1
  • feat/skip-dangling
  • gh-readonly-queue/next/pr-36034-7a061c4ca1024a19e2c295d773d9642625d1c2be
  • hotfix/39.238.3
  • refactor/gitlab-auto-approve
  • feat/template-strings
  • gh-readonly-queue/next/pr-35654-137d934242c784e0c45d4b957362214f0eade1d7
  • fix/32307-global-extends-merging
  • fix/32307-global-extends-repositories
  • 41.11.1
  • 41.11.0
  • 41.10.1
  • 41.10.0
  • 41.9.0
  • 41.8.0
  • 41.7.2
  • 41.7.1
  • 41.7.0
  • 41.6.4
  • 41.6.3
  • 41.6.2
  • 41.6.1
  • 41.6.0
  • 41.5.0
  • 41.4.0
  • 41.3.0
  • 41.2.0
  • 41.1.4
  • 41.1.3
41 results

error.ts

Blame
  • index.spec.ts 2.05 KiB
    import * as httpMock from '../../../test/http-mock';
    import { PlatformId } from '../../constants';
    import { PLATFORM_NOT_FOUND } from '../../constants/error-messages';
    import { loadModules } from '../../util/modules';
    import type { Platform } from './types';
    import * as platform from '.';
    
    jest.unmock('.');
    
    describe('modules/platform/index', () => {
      beforeEach(() => {
        jest.resetModules();
      });
    
      it('validates', () => {
        function validate(module: Platform | undefined, name: string): boolean {
          // TODO: test required api (#9650)
          if (!module?.initPlatform) {
            throw Error(`Missing api on ${name}`);
          }
          return true;
        }
        const platforms = platform.getPlatforms();
    
        const loadedMgr = loadModules(
          __dirname,
          undefined,
          (m) => !['utils', 'git'].includes(m)
        );
        expect(Array.from(platforms.keys())).toEqual(Object.keys(loadedMgr));
    
        for (const name of platforms.keys()) {
          const value = platforms.get(name);
          expect(validate(value, name)).toBeTrue();
        }
      });
    
      it('throws if no platform', () => {
        expect(() => platform.platform.initPlatform({})).toThrow(
          PLATFORM_NOT_FOUND
        );
      });
    
      it('throws if wrong platform', async () => {
        const config = { platform: 'wrong', username: 'abc', password: '123' };
        await expect(platform.initPlatform(config)).rejects.toThrow();
      });
    
      it('initializes', async () => {
        httpMock
          .scope('https://api.bitbucket.org')
          .get('/2.0/user')
          .basicAuth({ user: 'abc', pass: '123' })
          .reply(200, { uuid: 123 });
        const config = {
          platform: PlatformId.Bitbucket,
          gitAuthor: 'user@domain.com',
          username: 'abc',
          password: '123',
        };
        expect(await platform.initPlatform(config)).toEqual({
          endpoint: 'https://api.bitbucket.org/',
          gitAuthor: 'user@domain.com',
          hostRules: [
            {
              hostType: 'bitbucket',
              matchHost: 'api.bitbucket.org',
              password: '123',
              username: 'abc',
            },
          ],
          platform: PlatformId.Bitbucket,
        });
      });
    });