Normalize extension verison to SemVer (#12254)
The extension version used throughout the wallet is now normalized to a SemVer-compliant version that matches the version used in `package.json`. We use this version for display on the "About" page, and we attach it to all error reports and metric events, so it's important that we format it consistently so that we can correlate events on the same version across different browsers. This normalization step is necessary because Firefox and Chrome both have different requirements for the extension version, and neither is SemVer-compliant.feature/default_network_editable
parent
20b921f520
commit
864800b035
@ -1,7 +1,7 @@ |
||||
module.exports = { |
||||
// TODO: Remove the `exit` setting, it can hide broken tests.
|
||||
exit: true, |
||||
ignore: ['./app/scripts/migrations/*.test.js'], |
||||
ignore: ['./app/scripts/migrations/*.test.js', './app/scripts/platforms/*.test.js'], |
||||
recursive: true, |
||||
require: ['test/env.js', 'test/setup.js'], |
||||
} |
||||
|
@ -0,0 +1,96 @@ |
||||
import extension from 'extensionizer'; |
||||
import ExtensionPlatform from './extension'; |
||||
|
||||
jest.mock('extensionizer', () => { |
||||
return { |
||||
runtime: { |
||||
getManifest: jest.fn(), |
||||
}, |
||||
}; |
||||
}); |
||||
|
||||
describe('extension platform', () => { |
||||
beforeEach(() => { |
||||
// TODO: Delete this an enable 'resetMocks' in `jest.config.js` instead
|
||||
jest.resetAllMocks(); |
||||
}); |
||||
|
||||
describe('getVersion', () => { |
||||
it('should return non-prerelease version', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ version: '1.2.3' }); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
const version = extensionPlatform.getVersion(); |
||||
|
||||
expect(version).toBe('1.2.3'); |
||||
}); |
||||
|
||||
it('should return SemVer-formatted version for Chrome style manifest of prerelease', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ |
||||
version: '1.2.3.0', |
||||
version_name: 'beta', |
||||
}); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
const version = extensionPlatform.getVersion(); |
||||
|
||||
expect(version).toBe('1.2.3-beta.0'); |
||||
}); |
||||
|
||||
it('should return SemVer-formatted version for Firefox style manifest of prerelease', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ |
||||
version: '1.2.3.beta0', |
||||
}); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
const version = extensionPlatform.getVersion(); |
||||
|
||||
expect(version).toBe('1.2.3-beta.0'); |
||||
}); |
||||
|
||||
it('should throw error if build version is missing from Chrome style prerelease manifest', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ |
||||
version: '1.2.3', |
||||
version_name: 'beta', |
||||
}); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
expect(() => extensionPlatform.getVersion()).toThrow( |
||||
'Version missing build number:', |
||||
); |
||||
}); |
||||
|
||||
it('should throw error if build type is missing from Chrome style prerelease manifest', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ |
||||
version: '1.2.3.0', |
||||
}); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
expect(() => extensionPlatform.getVersion()).toThrow( |
||||
'Version contains invalid prerelease:', |
||||
); |
||||
}); |
||||
|
||||
it('should throw error if build version is missing from Firefox style prerelease manifest', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ |
||||
version: '1.2.3.beta', |
||||
}); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
expect(() => extensionPlatform.getVersion()).toThrow( |
||||
'Version contains invalid prerelease:', |
||||
); |
||||
}); |
||||
|
||||
it('should throw error if build type is missing from Firefox style prerelease manifest', () => { |
||||
extension.runtime.getManifest.mockReturnValue({ |
||||
version: '1.2.3.0', |
||||
}); |
||||
const extensionPlatform = new ExtensionPlatform(); |
||||
|
||||
expect(() => extensionPlatform.getVersion()).toThrow( |
||||
'Version contains invalid prerelease:', |
||||
); |
||||
}); |
||||
}); |
||||
}); |
Loading…
Reference in new issue