-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add tests for the deprecations API #1967
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
@@ -0,0 +1,329 @@ | ||
// Copyright 2024 Google LLC. Use of this source code is governed by an | ||
// MIT-style license that can be found in the LICENSE file or at | ||
// https://opensource.org/licenses/MIT. | ||
|
||
import { | ||
compileString, | ||
deprecations, | ||
Deprecation, | ||
Deprecations, | ||
Importer, | ||
Version, | ||
} from 'sass'; | ||
|
||
import {captureStdio, URL} from './utils'; | ||
|
||
/** | ||
* Map from obsolete deprecation IDs to version pairs. | ||
* | ||
* The first version is the version this deprecation type was deprecated in, | ||
* while the second version is the version it was made obsolete in. | ||
*/ | ||
const obsoleteDeprecations: {[key in keyof Deprecations]?: [string, string]} = | ||
{}; | ||
|
||
/** Map from active deprecation IDs to the version they were deprecated in. */ | ||
const activeDeprecations: {[key in keyof Deprecations]?: string} = { | ||
'call-string': '0.0.0', | ||
elseif: '1.3.2', | ||
'moz-document': '1.7.2', | ||
'relative-canonical': '1.14.2', | ||
'new-global': '1.17.2', | ||
'color-module-compat': '1.23.0', | ||
'slash-div': '1.33.0', | ||
'bogus-combinators': '1.54.0', | ||
'strict-unary': '1.55.0', | ||
'function-units': '1.56.0', | ||
'duplicate-var-flags': '1.62.0', | ||
'null-alpha': '1.62.3', | ||
'abs-percent': '1.65.0', | ||
'fs-importer-cwd': '1.73.0', | ||
}; | ||
|
||
/** | ||
* List of future deprecation IDs. | ||
* | ||
* This is only structured as an object to allow us to use a mapped object type | ||
* to ensure that all deprecation IDs listed here are included in the JS API | ||
* spec. | ||
*/ | ||
const futureDeprecations: {[key in keyof Deprecations]?: true} = {import: true}; | ||
|
||
/** | ||
* This is a temporary synchronization check to ensure that any new deprecation | ||
* types are added to all five of these locations: | ||
* - lib/src/deprecation.dart in sass/dart-sass | ||
* - js-api-doc/deprecations.d.ts in sass/sass | ||
* - spec/js-api/deprecations.d.ts.md in sass/sass | ||
* - lib/src/deprecations.ts in sass/embedded-host-node | ||
* - js-api-spec/deprecations.test.ts in sass/sass-spec (this file) | ||
* | ||
* Work to replace these manual changes with generated code from a single | ||
* source-of-truth is tracked in sass/sass#3827 | ||
*/ | ||
it('there are no extra or missing deprecation types', () => { | ||
const expectedDeprecations = [ | ||
...Object.keys(obsoleteDeprecations), | ||
...Object.keys(activeDeprecations), | ||
...Object.keys(futureDeprecations), | ||
'user-authored', | ||
]; | ||
const actualDeprecations = Object.keys(deprecations); | ||
const extraDeprecations = actualDeprecations.filter( | ||
deprecation => !expectedDeprecations.includes(deprecation) | ||
); | ||
expect(extraDeprecations).toBeEmptyArray(); | ||
const missingDeprecations = expectedDeprecations.filter( | ||
deprecation => !actualDeprecations.includes(deprecation) | ||
); | ||
expect(missingDeprecations).toBeEmptyArray(); | ||
}); | ||
|
||
describe('deprecation type', () => { | ||
const deprecationsMap = deprecations as unknown as { | ||
[key: string]: Deprecation; | ||
}; | ||
|
||
for (const [id, versions] of Object.entries(obsoleteDeprecations)) { | ||
if (!versions) continue; | ||
const [deprecatedIn, obsoleteIn] = versions; | ||
it(`${id} deprecated in ${deprecatedIn} and obsolete in ${obsoleteIn}`, () => { | ||
const deprecation = deprecationsMap[id]; | ||
expect(deprecation?.id).toBe(id); | ||
expect(deprecation?.status).toBe('obsolete'); | ||
expect(deprecation?.deprecatedIn).toEqual(Version.parse(deprecatedIn)); | ||
expect(deprecation?.obsoleteIn).toEqual(Version.parse(obsoleteIn)); | ||
}); | ||
} | ||
|
||
for (const [id, version] of Object.entries(activeDeprecations)) { | ||
it(`${id} deprecated in ${version}`, () => { | ||
const deprecation = deprecationsMap[id]; | ||
expect(deprecation?.id).toBe(id); | ||
expect(deprecation?.status).toBe('active'); | ||
expect(deprecation?.deprecatedIn).toEqual(Version.parse(version)); | ||
}); | ||
} | ||
|
||
for (const [id] of Object.entries(futureDeprecations)) { | ||
it(`${id} is a future deprecation`, () => { | ||
const deprecation = deprecationsMap[id]; | ||
expect(deprecation?.id).toBe(id); | ||
expect(deprecation?.status).toBe('future'); | ||
}); | ||
} | ||
}); | ||
|
||
describe('a warning', () => { | ||
it('is emitted with no flags', done => { | ||
compileString('a { $b: c !global; }', { | ||
logger: { | ||
warn( | ||
message: string, | ||
{ | ||
deprecationType, | ||
}: {deprecation: boolean; deprecationType?: Deprecation} | ||
) { | ||
expect(deprecationType).toEqual(deprecations['new-global']); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
it('is emitted with different deprecation type silenced', done => { | ||
compileString('a { $b: c !global; }', { | ||
logger: { | ||
warn( | ||
message: string, | ||
{ | ||
deprecationType, | ||
}: {deprecation: boolean; deprecationType?: Deprecation} | ||
) { | ||
expect(deprecationType).toEqual(deprecations['new-global']); | ||
done(); | ||
}, | ||
}, | ||
silenceDeprecations: ['call-string'], | ||
}); | ||
}); | ||
|
||
it('is not emitted when deprecation silenced', () => { | ||
const stdio = captureStdio(() => { | ||
compileString('a { $b: c !global; }', { | ||
silenceDeprecations: [deprecations['new-global']], | ||
}); | ||
}); | ||
expect(stdio.err).toBe(''); | ||
}); | ||
|
||
it('is not emitted when deprecation id silenced', () => { | ||
const stdio = captureStdio(() => { | ||
compileString('a { $b: c !global; }', { | ||
silenceDeprecations: ['new-global'], | ||
}); | ||
}); | ||
expect(stdio.err).toBe(''); | ||
}); | ||
|
||
it('is emitted for making same deprecation fatal and silent', done => { | ||
compileString('a { b: c; }', { | ||
fatalDeprecations: ['new-global'], | ||
silenceDeprecations: ['new-global'], | ||
logger: { | ||
warn(message: string) { | ||
expect(message).toContain('Ignoring setting to silence'); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
it('is emitted for enabling active deprecation', done => { | ||
compileString('a { b: c; }', { | ||
futureDeprecations: ['new-global'], | ||
logger: { | ||
warn(message: string) { | ||
expect(message).toContain('does not need to be explicitly enabled'); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
}); | ||
|
||
describe('an error', () => { | ||
it('is thrown when deprecation made fatal', () => { | ||
expect(() => | ||
compileString('a { $b: c !global; }', { | ||
fatalDeprecations: [deprecations['new-global']], | ||
}) | ||
).toThrowError(); | ||
}); | ||
|
||
it('is thrown when deprecation id made fatal', () => { | ||
expect(() => | ||
compileString('a { $b: c !global; }', { | ||
fatalDeprecations: [deprecations['new-global']], | ||
}) | ||
).toThrowError(); | ||
}); | ||
|
||
it('is thrown when version made fatal', () => { | ||
expect(() => | ||
compileString('a { $b: c !global; }', { | ||
fatalDeprecations: [new Version(1, 17, 2)], | ||
}) | ||
).toThrowError(); | ||
}); | ||
|
||
it('is thrown and warning emitted when both fatal and silenced', done => { | ||
expect(() => | ||
compileString('a { $b: c !global; }', { | ||
fatalDeprecations: ['new-global'], | ||
silenceDeprecations: ['new-global'], | ||
logger: { | ||
warn(message: string) { | ||
expect(message).toContain('Ignoring setting to silence'); | ||
done(); | ||
}, | ||
}, | ||
}) | ||
).toThrowError(); | ||
}); | ||
}); | ||
|
||
describe('for a future deprecation,', () => { | ||
let importer: Importer; | ||
beforeEach(() => { | ||
importer = { | ||
canonicalize: (url: string) => new URL(`u:${url}`), | ||
load() { | ||
return {contents: 'a { b: c; }', syntax: 'scss'}; | ||
}, | ||
}; | ||
}); | ||
|
||
it('no warning emitted by default', () => { | ||
const stdio = captureStdio(() => { | ||
compileString('@import "a"', {importers: [importer]}); | ||
}); | ||
expect(stdio.err).toBe(''); | ||
}); | ||
|
||
it('warning emitted when opted into', done => { | ||
compileString('@import "a"', { | ||
importers: [importer], | ||
futureDeprecations: [deprecations.import], | ||
logger: { | ||
warn( | ||
message: string, | ||
{ | ||
deprecationType, | ||
}: {deprecation: boolean; deprecationType?: Deprecation} | ||
) { | ||
expect(deprecationType).toEqual(deprecations.import); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
it('warning emitted when id opted into', done => { | ||
compileString('@import "a"', { | ||
importers: [importer], | ||
futureDeprecations: ['import'], | ||
logger: { | ||
warn( | ||
message: string, | ||
{ | ||
deprecationType, | ||
}: {deprecation: boolean; deprecationType?: Deprecation} | ||
) { | ||
expect(deprecationType).toEqual(deprecations.import); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
it('it must be enabled to be made fatal', done => { | ||
compileString('@import "a"', { | ||
importers: [importer], | ||
fatalDeprecations: ['import'], | ||
logger: { | ||
warn(message: string) { | ||
expect(message).toContain('deprecation must be enabled'); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
it('silencing it takes precedence', done => { | ||
compileString('@import "a"', { | ||
importers: [importer], | ||
futureDeprecations: ['import'], | ||
silenceDeprecations: ['import'], | ||
logger: { | ||
warn(message: string) { | ||
expect(message).toContain('cancel each other out'); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
|
||
it('warning emitted for silencing it', done => { | ||
compileString('a { b: c; }', { | ||
importers: [importer], | ||
silenceDeprecations: ['import'], | ||
logger: { | ||
warn(message: string) { | ||
expect(message).toContain('deprecation is not yet active'); | ||
done(); | ||
}, | ||
}, | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should check that everything in
expectedDeprecations
is indeprecations
as well. Also, we should probably have some sort of test for the deprecation list in the JS API spec as well.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added an additional check that there are no missing deprecations either.
I also added some types which should ensure that there aren't any extra deprecations in these tests that aren't in the spec.