-
-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
236 additions
and
181 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
import { describe, it, expect, vi, beforeEach } from 'vitest'; | ||
import { describe, it, expect, vi } from 'vitest'; | ||
import type { AnalysedPackage } from './getIncompatibleStorybookPackages'; | ||
import { | ||
getIncompatibleStorybookPackages, | ||
getIncompatiblePackagesSummary, | ||
checkPackageCompatibility, | ||
} from './getIncompatibleStorybookPackages'; | ||
import pkgUp from 'read-pkg-up'; | ||
import type { JsPackageManager } from '@storybook/core-common'; | ||
|
||
import * as doctorUtils from './utils'; | ||
|
||
vi.mock('chalk', () => { | ||
return { | ||
default: { | ||
yellow: (str: string) => str, | ||
cyan: (str: string) => str, | ||
bold: (str: string) => str, | ||
}, | ||
}; | ||
}); | ||
|
||
vi.mock('read-pkg-up', () => ({ | ||
default: vi.fn(), | ||
vi.mock('./utils', () => ({ | ||
getPackageJsonPath: vi.fn(() => Promise.resolve('package.json')), | ||
getPackageJsonOfDependency: vi.fn(() => Promise.resolve({})), | ||
PackageJsonNotFoundError: Error, | ||
})); | ||
|
||
const packageManagerMock = { | ||
|
@@ -27,91 +33,121 @@ const packageManagerMock = { | |
latestVersion: vi.fn(() => Promise.resolve('8.0.0')), | ||
} as Partial<JsPackageManager>; | ||
|
||
describe('getIncompatibleStorybookPackages', () => { | ||
beforeEach(() => { | ||
vi.resetAllMocks(); | ||
}); | ||
|
||
it('returns an array of incompatible packages', async () => { | ||
vi.mocked(pkgUp).mockResolvedValueOnce({ | ||
packageJson: { | ||
name: '@storybook/addon-essentials', | ||
version: '7.0.0', | ||
dependencies: { | ||
'@storybook/core-common': '7.0.0', | ||
}, | ||
describe('checkPackageCompatibility', () => { | ||
it('returns that an package is incompatible', async () => { | ||
const packageName = 'my-storybook-package'; | ||
vi.mocked(doctorUtils.getPackageJsonOfDependency).mockResolvedValueOnce({ | ||
name: packageName, | ||
version: '1.0.0', | ||
dependencies: { | ||
'@storybook/core-common': '7.0.0', | ||
}, | ||
path: '', | ||
} as any); | ||
const result = await checkPackageCompatibility(packageName, { | ||
currentStorybookVersion: '8.0.0', | ||
packageManager: packageManagerMock as JsPackageManager, | ||
}); | ||
expect(result).toEqual({ | ||
packageName: 'my-storybook-package', | ||
packageVersion: '1.0.0', | ||
hasIncompatibleDependencies: true, | ||
homepage: undefined, | ||
availableUpdate: undefined, | ||
}); | ||
}); | ||
|
||
vi.mocked(packageManagerMock.latestVersion)?.mockResolvedValueOnce('8.0.0'); | ||
|
||
const result = await getIncompatibleStorybookPackages({ | ||
it('returns that an package is compatible', async () => { | ||
const packageName = 'my-storybook-package'; | ||
vi.mocked(doctorUtils.getPackageJsonOfDependency).mockResolvedValueOnce({ | ||
name: packageName, | ||
version: '1.0.0', | ||
dependencies: { | ||
'@storybook/core-common': '8.0.0', | ||
}, | ||
} as any); | ||
const result = await checkPackageCompatibility(packageName, { | ||
currentStorybookVersion: '8.0.0', | ||
packageManager: packageManagerMock as JsPackageManager, | ||
}); | ||
expect(result).toEqual({ | ||
packageName: 'my-storybook-package', | ||
packageVersion: '1.0.0', | ||
hasIncompatibleDependencies: false, | ||
homepage: undefined, | ||
availableUpdate: undefined, | ||
}); | ||
}); | ||
|
||
expect(packageManagerMock.latestVersion).toHaveBeenCalled(); | ||
expect(result).toEqual([ | ||
{ | ||
packageName: '@storybook/addon-essentials', | ||
packageVersion: '7.0.0', | ||
hasIncompatibleDependencies: true, | ||
homepage: undefined, | ||
availableUpdate: true, | ||
latestVersionOfPackage: '8.0.0', | ||
it('returns that an package is incompatible and because it is core, can be upgraded', async () => { | ||
const packageName = '@storybook/addon-essentials'; | ||
vi.mocked(doctorUtils.getPackageJsonOfDependency).mockResolvedValueOnce({ | ||
name: packageName, | ||
version: '7.0.0', | ||
dependencies: { | ||
'@storybook/core-common': '7.0.0', | ||
}, | ||
]); | ||
} as any); | ||
const result = await checkPackageCompatibility(packageName, { | ||
currentStorybookVersion: '8.0.0', | ||
packageManager: packageManagerMock as JsPackageManager, | ||
}); | ||
expect(result).toEqual({ | ||
packageName: '@storybook/addon-essentials', | ||
packageVersion: '7.0.0', | ||
hasIncompatibleDependencies: true, | ||
homepage: undefined, | ||
availableUpdate: '8.0.0', | ||
}); | ||
}); | ||
}); | ||
|
||
it('returns an array of incompatible packages without upgrade check', async () => { | ||
vi.mocked(pkgUp).mockResolvedValueOnce({ | ||
packageJson: { | ||
name: '@storybook/addon-essentials', | ||
version: '7.0.0', | ||
dependencies: { | ||
'@storybook/core-common': '7.0.0', | ||
}, | ||
describe('getIncompatibleStorybookPackages', () => { | ||
it('returns an array of incompatible packages', async () => { | ||
vi.mocked(doctorUtils.getPackageJsonOfDependency).mockResolvedValueOnce({ | ||
name: '@storybook/addon-essentials', | ||
version: '7.0.0', | ||
dependencies: { | ||
'@storybook/core-common': '7.0.0', | ||
}, | ||
path: '', | ||
}); | ||
} as any); | ||
|
||
const result = await getIncompatibleStorybookPackages({ | ||
currentStorybookVersion: '8.0.0', | ||
packageManager: packageManagerMock as JsPackageManager, | ||
skipUpgradeCheck: true, | ||
}); | ||
|
||
expect(packageManagerMock.latestVersion).not.toHaveBeenCalled(); | ||
|
||
expect(result).toEqual([ | ||
{ | ||
packageName: '@storybook/addon-essentials', | ||
packageVersion: '7.0.0', | ||
hasIncompatibleDependencies: true, | ||
homepage: undefined, | ||
availableUpdate: false, | ||
latestVersionOfPackage: undefined, | ||
availableUpdate: '8.0.0', | ||
}, | ||
]); | ||
}); | ||
}); | ||
|
||
describe('getIncompatiblePackagesSummary', () => { | ||
it('generates a summary message for incompatible packages', () => { | ||
const analysedPackages = [ | ||
const analysedPackages: AnalysedPackage[] = [ | ||
{ | ||
packageName: 'storybook-react', | ||
packageVersion: '1.0.0', | ||
hasIncompatibleDependencies: true, | ||
latestVersionOfPackage: '2.0.0', | ||
availableUpdate: true, | ||
}, | ||
{ | ||
packageName: '@storybook/addon-essentials', | ||
packageVersion: '7.0.0', | ||
hasIncompatibleDependencies: true, | ||
availableUpdate: '8.0.0', | ||
}, | ||
]; | ||
const summary = getIncompatiblePackagesSummary(analysedPackages, '7.0.0'); | ||
const summary = getIncompatiblePackagesSummary(analysedPackages, '8.0.0'); | ||
expect(summary).toMatchInlineSnapshot(` | ||
"The following addons are likely incompatible with Storybook 7.0.0: | ||
- [email protected] (2.0.0 available!) | ||
"The following packages are incompatible with Storybook 8.0.0 as they depend on different major versions of Storybook packages: | ||
- [email protected] | ||
- @storybook/[email protected] (8.0.0 available!) | ||
Please consider updating your packages or contacting the maintainers for compatibility details. | ||
|
Oops, something went wrong.