@onekeyfe/hd-core 1.2.0-alpha.2 → 1.2.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/__tests__/AllNetworkGetAddressBase.tracing.test.ts +75 -0
- package/__tests__/DeviceCommands.test.ts +285 -0
- package/__tests__/DeviceEventRegistration.test.ts +43 -0
- package/__tests__/connectSettings.test.ts +19 -0
- package/__tests__/core-dispose.test.ts +34 -0
- package/__tests__/core-error-output.test.ts +39 -0
- package/__tests__/device-features-state.test.ts +78 -0
- package/__tests__/device-identity.test.ts +30 -0
- package/__tests__/device-lifecycle-events.test.ts +117 -0
- package/__tests__/device-pool-state.test.ts +132 -0
- package/__tests__/device-settings.test.ts +391 -0
- package/__tests__/device-state-contract.test.ts +27 -0
- package/__tests__/device-state-events.test.ts +162 -0
- package/__tests__/device-state-mapper.test.ts +241 -0
- package/__tests__/device-state-projector.test.ts +94 -0
- package/__tests__/device-state-store.test.ts +82 -0
- package/__tests__/device-utils.test.ts +106 -0
- package/__tests__/device-wallet-session-store.test.ts +213 -0
- package/__tests__/deviceFeaturesUtils.test.ts +39 -0
- package/__tests__/deviceSettings.test.ts +103 -0
- package/__tests__/evmLedgerLegacySafety.test.ts +10 -6
- package/__tests__/evmSignTypedData.test.ts +80 -0
- package/__tests__/filesystemValidation.test.ts +53 -0
- package/__tests__/firmware-update/firmware-update-v2-download-before-boot.test.ts +402 -0
- package/__tests__/get-device-state.test.ts +410 -0
- package/__tests__/homescreen.test.ts +24 -0
- package/__tests__/kaspaSignTransaction.test.ts +591 -0
- package/__tests__/logBlockEvent.test.ts +26 -0
- package/__tests__/networkUtils.test.ts +386 -0
- package/__tests__/open-wallet-session-error-response.test.ts +43 -0
- package/__tests__/open-wallet-session.test.ts +559 -0
- package/__tests__/preInitialize.test.ts +33 -0
- package/__tests__/pro2Wallpaper.test.ts +50 -0
- package/__tests__/protocol-v2-bootloader-mode.test.ts +37 -0
- package/__tests__/protocol-v2-firmware-targets.test.ts +19 -0
- package/__tests__/protocol-v2.test.ts +3954 -1191
- package/__tests__/protocolV2FileWrite.test.ts +92 -0
- package/__tests__/protocolV2UiInteraction.test.ts +266 -0
- package/__tests__/public-device-state-api.test.ts +257 -0
- package/__tests__/public-pro2-api-boundary.test.ts +110 -0
- package/__tests__/refresh-device-state.test.ts +101 -0
- package/__tests__/request-context-logging.test.ts +16 -0
- package/__tests__/search-devices.test.ts +136 -0
- package/dist/api/BaseMethod.d.ts +8 -0
- package/dist/api/BaseMethod.d.ts.map +1 -1
- package/dist/api/CheckBootloaderRelease.d.ts.map +1 -1
- package/dist/api/CheckFirmwareRelease.d.ts.map +1 -1
- package/dist/api/ClearSessionCache.d.ts +9 -0
- package/dist/api/ClearSessionCache.d.ts.map +1 -0
- package/dist/api/DirList.d.ts.map +1 -1
- package/dist/api/FileRead.d.ts.map +1 -1
- package/dist/api/FileWrite.d.ts +1 -0
- package/dist/api/FileWrite.d.ts.map +1 -1
- package/dist/api/FirmwareUpdateV2.d.ts +2 -2
- package/dist/api/FirmwareUpdateV2.d.ts.map +1 -1
- package/dist/api/FirmwareUpdateV3.d.ts.map +1 -1
- package/dist/api/FirmwareUpdateV4.d.ts +25 -5
- package/dist/api/FirmwareUpdateV4.d.ts.map +1 -1
- package/dist/api/GetDeviceState.d.ts +7 -0
- package/dist/api/GetDeviceState.d.ts.map +1 -0
- package/dist/api/GetFeatures.d.ts +1 -1
- package/dist/api/GetFeatures.d.ts.map +1 -1
- package/dist/api/GetOnekeyFeatures.d.ts.map +1 -1
- package/dist/api/GetPassphraseState.d.ts +1 -6
- package/dist/api/GetPassphraseState.d.ts.map +1 -1
- package/dist/api/OpenWalletSession.d.ts +14 -0
- package/dist/api/OpenWalletSession.d.ts.map +1 -0
- package/dist/api/PathInfo.d.ts.map +1 -1
- package/dist/api/PromptWebDeviceAccess.d.ts.map +1 -1
- package/dist/api/SearchDevices.d.ts +3 -0
- package/dist/api/SearchDevices.d.ts.map +1 -1
- package/dist/api/UploadPortfolio.d.ts +17 -0
- package/dist/api/UploadPortfolio.d.ts.map +1 -0
- package/dist/api/allnetwork/AllNetworkGetAddressBase.d.ts.map +1 -1
- package/dist/api/device/DeviceCancel.d.ts.map +1 -1
- package/dist/api/device/DeviceChangePin.d.ts.map +1 -1
- package/dist/api/device/DeviceFullyUploadResource.d.ts +1 -2
- package/dist/api/device/DeviceFullyUploadResource.d.ts.map +1 -1
- package/dist/api/device/DeviceLock.d.ts.map +1 -1
- package/dist/api/device/DeviceRebootToBoardloader.d.ts.map +1 -1
- package/dist/api/device/DeviceRebootToBootloader.d.ts.map +1 -1
- package/dist/api/device/DeviceSettings.d.ts.map +1 -1
- package/dist/api/device/DeviceUnlock.d.ts +1 -1
- package/dist/api/device/DeviceUnlock.d.ts.map +1 -1
- package/dist/api/device/DeviceUpdateBootloader.d.ts.map +1 -1
- package/dist/api/device/DeviceWipe.d.ts.map +1 -1
- package/dist/api/evm/EVMSignTypedData.d.ts.map +1 -1
- package/dist/api/firmware/FirmwareUpdateBaseMethod.d.ts +1 -0
- package/dist/api/firmware/FirmwareUpdateBaseMethod.d.ts.map +1 -1
- package/dist/api/firmware/getBinary.d.ts +11 -3
- package/dist/api/firmware/getBinary.d.ts.map +1 -1
- package/dist/api/firmware/progressThrottle.d.ts +3 -0
- package/dist/api/firmware/progressThrottle.d.ts.map +1 -0
- package/dist/api/helpers/filesystemValidation.d.ts +3 -0
- package/dist/api/helpers/filesystemValidation.d.ts.map +1 -1
- package/dist/api/helpers/paramsValidator.d.ts +1 -0
- package/dist/api/helpers/paramsValidator.d.ts.map +1 -1
- package/dist/api/helpers/protocolV2FileWrite.d.ts +33 -0
- package/dist/api/helpers/protocolV2FileWrite.d.ts.map +1 -0
- package/dist/api/index.d.ts +12 -19
- package/dist/api/index.d.ts.map +1 -1
- package/dist/api/kaspa/KaspaSignTransaction.d.ts +5 -1
- package/dist/api/kaspa/KaspaSignTransaction.d.ts.map +1 -1
- package/dist/api/kaspa/helpers/TransferSerialize.d.ts.map +1 -1
- package/dist/api/protocol-v2/DeviceFactoryInfoGet.d.ts +6 -0
- package/dist/api/protocol-v2/DeviceFactoryInfoGet.d.ts.map +1 -0
- package/dist/api/protocol-v2/DeviceFactoryInfoSet.d.ts +7 -0
- package/dist/api/protocol-v2/DeviceFactoryInfoSet.d.ts.map +1 -0
- package/dist/api/protocol-v2/DeviceFirmwareUpdate.d.ts +1 -1
- package/dist/api/protocol-v2/DeviceFirmwareUpdate.d.ts.map +1 -1
- package/dist/api/protocol-v2/DeviceGetFirmwareUpdateStatus.d.ts +3 -2
- package/dist/api/protocol-v2/DeviceGetFirmwareUpdateStatus.d.ts.map +1 -1
- package/dist/api/protocol-v2/DeviceGetOnboardingStatus.d.ts +1 -1
- package/dist/api/protocol-v2/DeviceGetOnboardingStatus.d.ts.map +1 -1
- package/dist/api/protocol-v2/DeviceInfoGet.d.ts +28 -0
- package/dist/api/protocol-v2/DeviceInfoGet.d.ts.map +1 -0
- package/dist/api/protocol-v2/DeviceReboot.d.ts.map +1 -1
- package/dist/api/protocol-v2/DeviceStatusGet.d.ts +6 -0
- package/dist/api/protocol-v2/DeviceStatusGet.d.ts.map +1 -0
- package/dist/api/protocol-v2/DeviceUploadWallpaper.d.ts +26 -0
- package/dist/api/protocol-v2/DeviceUploadWallpaper.d.ts.map +1 -0
- package/dist/api/protocol-v2/FilesystemFormat.d.ts.map +1 -1
- package/dist/api/protocol-v2/{FilesystemFixPermission.d.ts → FilesystemPermissionFix.d.ts} +2 -2
- package/dist/api/protocol-v2/FilesystemPermissionFix.d.ts.map +1 -0
- package/dist/api/protocol-v2/ProtocolInfoRequest.d.ts +6 -0
- package/dist/api/protocol-v2/ProtocolInfoRequest.d.ts.map +1 -0
- package/dist/api/protocol-v2/helpers.d.ts +27 -19
- package/dist/api/protocol-v2/helpers.d.ts.map +1 -1
- package/dist/api/ton/TonSignData.d.ts +1 -5
- package/dist/api/ton/TonSignData.d.ts.map +1 -1
- package/dist/api/utils.d.ts +2 -1
- package/dist/api/utils.d.ts.map +1 -1
- package/dist/constants/index.d.ts +2 -1
- package/dist/constants/index.d.ts.map +1 -1
- package/dist/core/RequestQueue.d.ts.map +1 -1
- package/dist/core/deviceEventRegistration.d.ts +11 -0
- package/dist/core/deviceEventRegistration.d.ts.map +1 -0
- package/dist/core/index.d.ts +3 -1
- package/dist/core/index.d.ts.map +1 -1
- package/dist/data-manager/DataManager.d.ts +1 -1
- package/dist/data-manager/DataManager.d.ts.map +1 -1
- package/dist/data-manager/connectSettings.d.ts.map +1 -1
- package/dist/device/Device.d.ts +35 -11
- package/dist/device/Device.d.ts.map +1 -1
- package/dist/device/DeviceCommands.d.ts +8 -6
- package/dist/device/DeviceCommands.d.ts.map +1 -1
- package/dist/device/DeviceFeaturesState.d.ts +3 -0
- package/dist/device/DeviceFeaturesState.d.ts.map +1 -0
- package/dist/device/DevicePool.d.ts +4 -2
- package/dist/device/DevicePool.d.ts.map +1 -1
- package/dist/device/DeviceStateMapper.d.ts +13 -0
- package/dist/device/DeviceStateMapper.d.ts.map +1 -0
- package/dist/device/DeviceStateProjector.d.ts +7 -0
- package/dist/device/DeviceStateProjector.d.ts.map +1 -0
- package/dist/device/DeviceStateStore.d.ts +21 -0
- package/dist/device/DeviceStateStore.d.ts.map +1 -0
- package/dist/device/DeviceWalletSessionStore.d.ts +20 -0
- package/dist/device/DeviceWalletSessionStore.d.ts.map +1 -0
- package/dist/device/cloneDeviceState.d.ts +2 -0
- package/dist/device/cloneDeviceState.d.ts.map +1 -0
- package/dist/device/deviceIdentity.d.ts +5 -0
- package/dist/device/deviceIdentity.d.ts.map +1 -0
- package/dist/deviceProfile/buildDeviceFeatures.d.ts +9 -3
- package/dist/deviceProfile/buildDeviceFeatures.d.ts.map +1 -1
- package/dist/deviceProfile/index.d.ts +0 -1
- package/dist/deviceProfile/index.d.ts.map +1 -1
- package/dist/events/device.d.ts +11 -2
- package/dist/events/device.d.ts.map +1 -1
- package/dist/events/logBlockEvent.d.ts.map +1 -1
- package/dist/events/ui-request.d.ts +18 -2
- package/dist/events/ui-request.d.ts.map +1 -1
- package/dist/index.d.ts +1361 -609
- package/dist/index.js +5898 -2860
- package/dist/inject.d.ts.map +1 -1
- package/dist/protocols/protocol-v2/deviceSession.d.ts +7 -0
- package/dist/protocols/protocol-v2/deviceSession.d.ts.map +1 -0
- package/dist/protocols/protocol-v2/features.d.ts +23 -28
- package/dist/protocols/protocol-v2/features.d.ts.map +1 -1
- package/dist/protocols/protocol-v2/firmware.d.ts +11 -9
- package/dist/protocols/protocol-v2/firmware.d.ts.map +1 -1
- package/dist/protocols/protocol-v2/index.d.ts +3 -2
- package/dist/protocols/protocol-v2/index.d.ts.map +1 -1
- package/dist/protocols/protocol-v2/lockedError.d.ts +2 -0
- package/dist/protocols/protocol-v2/lockedError.d.ts.map +1 -0
- package/dist/protocols/protocol-v2/settingsUnlockPolicy.d.ts +16 -0
- package/dist/protocols/protocol-v2/settingsUnlockPolicy.d.ts.map +1 -0
- package/dist/protocols/protocol-v2/uiInteraction.d.ts +39 -0
- package/dist/protocols/protocol-v2/uiInteraction.d.ts.map +1 -0
- package/dist/protocols/protocol-v2/unlockRetry.d.ts +11 -0
- package/dist/protocols/protocol-v2/unlockRetry.d.ts.map +1 -0
- package/dist/protocols/protocol-v2/walletSession.d.ts +19 -0
- package/dist/protocols/protocol-v2/walletSession.d.ts.map +1 -0
- package/dist/types/api/checkAllFirmwareRelease.d.ts +1 -2
- package/dist/types/api/checkAllFirmwareRelease.d.ts.map +1 -1
- package/dist/types/api/deviceSettings.d.ts +11 -2
- package/dist/types/api/deviceSettings.d.ts.map +1 -1
- package/dist/types/api/deviceUnlock.d.ts +2 -2
- package/dist/types/api/deviceUnlock.d.ts.map +1 -1
- package/dist/types/api/firmwareUpdate.d.ts +6 -6
- package/dist/types/api/firmwareUpdate.d.ts.map +1 -1
- package/dist/types/api/getDeviceState.d.ts +12 -0
- package/dist/types/api/getDeviceState.d.ts.map +1 -0
- package/dist/types/api/getFeatures.d.ts.map +1 -1
- package/dist/types/api/getOnekeyFeatures.d.ts.map +1 -1
- package/dist/types/api/getPassphraseState.d.ts +2 -10
- package/dist/types/api/getPassphraseState.d.ts.map +1 -1
- package/dist/types/api/index.d.ts +22 -25
- package/dist/types/api/index.d.ts.map +1 -1
- package/dist/types/api/kaspaSignTransaction.d.ts +27 -2
- package/dist/types/api/kaspaSignTransaction.d.ts.map +1 -1
- package/dist/types/api/openWalletSession.d.ts +41 -0
- package/dist/types/api/openWalletSession.d.ts.map +1 -0
- package/dist/types/api/protocolV2.d.ts +23 -28
- package/dist/types/api/protocolV2.d.ts.map +1 -1
- package/dist/types/api/sessionCache.d.ts +10 -0
- package/dist/types/api/sessionCache.d.ts.map +1 -0
- package/dist/types/device.d.ts +121 -5
- package/dist/types/device.d.ts.map +1 -1
- package/dist/types/params.d.ts +1 -0
- package/dist/types/params.d.ts.map +1 -1
- package/dist/types/settings.d.ts +21 -1
- package/dist/types/settings.d.ts.map +1 -1
- package/dist/utils/assets.d.ts +2 -1
- package/dist/utils/assets.d.ts.map +1 -1
- package/dist/utils/deviceFeaturesCompat.d.ts +13 -0
- package/dist/utils/deviceFeaturesCompat.d.ts.map +1 -0
- package/dist/utils/deviceFeaturesUtils.d.ts +13 -3
- package/dist/utils/deviceFeaturesUtils.d.ts.map +1 -1
- package/dist/utils/deviceInfoUtils.d.ts +9 -8
- package/dist/utils/deviceInfoUtils.d.ts.map +1 -1
- package/dist/utils/deviceSettings.d.ts +38 -7
- package/dist/utils/deviceSettings.d.ts.map +1 -1
- package/dist/utils/deviceVersionUtils.d.ts +6 -5
- package/dist/utils/deviceVersionUtils.d.ts.map +1 -1
- package/dist/utils/homescreen.d.ts.map +1 -1
- package/dist/utils/index.d.ts +5 -2
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/networkUtils.d.ts +9 -1
- package/dist/utils/networkUtils.d.ts.map +1 -1
- package/dist/utils/patch.d.ts +1 -1
- package/dist/utils/patch.d.ts.map +1 -1
- package/dist/utils/pro2Wallpaper.d.ts +12 -0
- package/dist/utils/pro2Wallpaper.d.ts.map +1 -0
- package/dist/utils/tracing.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/api/BaseMethod.ts +36 -9
- package/src/api/CheckBootloaderRelease.ts +1 -2
- package/src/api/CheckFirmwareRelease.ts +1 -2
- package/src/api/ClearSessionCache.ts +28 -0
- package/src/api/DirList.ts +5 -3
- package/src/api/DirMake.ts +3 -3
- package/src/api/DirRemove.ts +3 -3
- package/src/api/FileDelete.ts +3 -3
- package/src/api/FileRead.ts +23 -7
- package/src/api/FileWrite.ts +23 -168
- package/src/api/FirmwareUpdate.ts +4 -4
- package/src/api/FirmwareUpdateV2.ts +133 -45
- package/src/api/FirmwareUpdateV3.ts +3 -5
- package/src/api/FirmwareUpdateV4.ts +1138 -357
- package/src/api/GetDeviceState.ts +55 -0
- package/src/api/GetFeatures.ts +8 -3
- package/src/api/GetOnekeyFeatures.ts +3 -72
- package/src/api/GetPassphraseState.ts +11 -18
- package/src/api/OpenWalletSession.ts +221 -0
- package/src/api/PathInfo.ts +5 -3
- package/src/api/PromptWebDeviceAccess.ts +2 -3
- package/src/api/SearchDevices.ts +29 -4
- package/src/api/UploadPortfolio.ts +40 -0
- package/src/api/alephium/AlephiumSignTransaction.ts +2 -2
- package/src/api/allnetwork/AllNetworkGetAddressBase.ts +4 -8
- package/src/api/benfen/BenfenGetAddress.ts +1 -1
- package/src/api/btc/BTCGetPublicKey.ts +1 -1
- package/src/api/cardano/CardanoSignMessage.ts +1 -1
- package/src/api/cardano/CardanoSignTransaction.ts +1 -1
- package/src/api/device/DeviceCancel.ts +1 -0
- package/src/api/device/DeviceChangePin.ts +24 -0
- package/src/api/device/DeviceFullyUploadResource.ts +4 -5
- package/src/api/device/DeviceLock.ts +1 -0
- package/src/api/device/DeviceRebootToBoardloader.ts +5 -4
- package/src/api/device/DeviceRebootToBootloader.ts +5 -4
- package/src/api/device/DeviceSettings.ts +183 -1
- package/src/api/device/DeviceUnlock.ts +11 -1
- package/src/api/device/DeviceUpdateBootloader.ts +1 -2
- package/src/api/device/DeviceWipe.ts +19 -0
- package/src/api/evm/EVMSignTypedData.ts +3 -5
- package/src/api/evm/legacyV1/getAddress.ts +2 -2
- package/src/api/evm/legacyV1/getPublicKey.ts +2 -2
- package/src/api/evm/legacyV1/signMessage.ts +2 -2
- package/src/api/evm/legacyV1/signTypedData.ts +2 -2
- package/src/api/evm/legacyV1/signTypedHash.ts +2 -2
- package/src/api/evm/legacyV1/verifyMessage.ts +2 -2
- package/src/api/firmware/FirmwareUpdateBaseMethod.ts +21 -7
- package/src/api/firmware/getBinary.ts +8 -3
- package/src/api/firmware/progressThrottle.ts +44 -0
- package/src/api/helpers/batchGetPublickeys.ts +2 -2
- package/src/api/helpers/filesystemValidation.ts +61 -0
- package/src/api/helpers/paramsValidator.ts +1 -1
- package/src/api/helpers/protocolV2FileWrite.ts +193 -0
- package/src/api/index.ts +14 -20
- package/src/api/kaspa/KaspaSignTransaction.ts +341 -22
- package/src/api/kaspa/helpers/TransferSerialize.ts +14 -0
- package/src/api/nervos/NervosSignTransaction.ts +2 -2
- package/src/api/nexa/NexaSignTransaction.ts +1 -1
- package/src/api/protocol-v2/{FactoryGetDeviceInfo.ts → DeviceFactoryInfoGet.ts} +4 -4
- package/src/api/protocol-v2/DeviceFactoryInfoSet.ts +32 -0
- package/src/api/protocol-v2/DeviceFirmwareUpdate.ts +7 -9
- package/src/api/protocol-v2/DeviceGetFirmwareUpdateStatus.ts +41 -6
- package/src/api/protocol-v2/DeviceGetOnboardingStatus.ts +6 -4
- package/src/api/protocol-v2/DeviceInfoGet.ts +145 -0
- package/src/api/protocol-v2/DeviceReboot.ts +5 -3
- package/src/api/protocol-v2/DeviceStatusGet.ts +16 -0
- package/src/api/protocol-v2/DeviceUploadWallpaper.ts +131 -0
- package/src/api/protocol-v2/FilesystemFormat.ts +5 -2
- package/src/api/protocol-v2/{FilesystemFixPermission.ts → FilesystemPermissionFix.ts} +3 -3
- package/src/api/protocol-v2/Ping.ts +1 -1
- package/src/api/protocol-v2/{GetProtoVersion.ts → ProtocolInfoRequest.ts} +3 -3
- package/src/api/protocol-v2/helpers.ts +58 -62
- package/src/api/ton/TonSignData.ts +1 -5
- package/src/api/utils.ts +7 -3
- package/src/constants/index.ts +7 -1
- package/src/core/RequestQueue.ts +1 -0
- package/src/core/deviceEventRegistration.ts +23 -0
- package/src/core/index.ts +140 -35
- package/src/data/messages/messages-protocol-v2.json +825 -709
- package/src/data/messages/messages.json +286 -1
- package/src/data-manager/DataManager.ts +13 -6
- package/src/data-manager/connectSettings.ts +4 -0
- package/src/device/Device.ts +480 -192
- package/src/device/DeviceCommands.ts +81 -25
- package/src/device/DeviceFeaturesState.ts +25 -0
- package/src/device/DevicePool.ts +67 -19
- package/src/device/DeviceStateMapper.ts +349 -0
- package/src/device/DeviceStateProjector.ts +95 -0
- package/src/device/DeviceStateStore.ts +201 -0
- package/src/device/DeviceWalletSessionStore.ts +105 -0
- package/src/device/cloneDeviceState.ts +39 -0
- package/src/device/deviceIdentity.ts +18 -0
- package/src/deviceProfile/buildDeviceFeatures.ts +235 -210
- package/src/deviceProfile/index.ts +0 -1
- package/src/events/device.ts +17 -1
- package/src/events/logBlockEvent.ts +8 -1
- package/src/events/ui-request.ts +24 -2
- package/src/inject.ts +23 -34
- package/src/protocols/protocol-v2/deviceSession.ts +24 -0
- package/src/protocols/protocol-v2/features.ts +68 -82
- package/src/protocols/protocol-v2/firmware.ts +12 -36
- package/src/protocols/protocol-v2/index.ts +3 -1
- package/src/protocols/protocol-v2/lockedError.ts +10 -0
- package/src/protocols/protocol-v2/settingsUnlockPolicy.ts +61 -0
- package/src/protocols/protocol-v2/uiInteraction.ts +210 -0
- package/src/protocols/protocol-v2/unlockRetry.ts +76 -0
- package/src/protocols/protocol-v2/walletSession.ts +107 -0
- package/src/types/api/checkAllFirmwareRelease.ts +1 -2
- package/src/types/api/deviceSettings.ts +26 -2
- package/src/types/api/deviceUnlock.ts +5 -2
- package/src/types/api/firmwareUpdate.ts +28 -20
- package/src/types/api/getDeviceState.ts +19 -0
- package/src/types/api/getFeatures.ts +3 -0
- package/src/types/api/getOnekeyFeatures.ts +3 -0
- package/src/types/api/getPassphraseState.ts +8 -11
- package/src/types/api/index.ts +30 -53
- package/src/types/api/kaspaSignTransaction.ts +40 -2
- package/src/types/api/openWalletSession.ts +64 -0
- package/src/types/api/protocolV2.ts +58 -55
- package/src/types/api/sessionCache.ts +14 -0
- package/src/types/device.ts +170 -4
- package/src/types/params.ts +4 -0
- package/src/types/settings.ts +42 -30
- package/src/utils/assets.ts +4 -1
- package/src/utils/deviceFeaturesCompat.ts +173 -0
- package/src/utils/deviceFeaturesUtils.ts +68 -24
- package/src/utils/deviceInfoUtils.ts +26 -64
- package/src/utils/deviceSettings.ts +161 -39
- package/src/utils/deviceVersionUtils.ts +25 -44
- package/src/utils/findDefectiveBatchDevice.ts +3 -3
- package/src/utils/homescreen.ts +10 -0
- package/src/utils/index.ts +21 -1
- package/src/utils/networkUtils.ts +270 -14
- package/src/utils/pro2Wallpaper.ts +109 -0
- package/src/utils/tracing.ts +3 -1
- package/dist/api/GetDeviceInfo.d.ts +0 -9
- package/dist/api/GetDeviceInfo.d.ts.map +0 -1
- package/dist/api/protocol-v2/DevReboot.d.ts +0 -7
- package/dist/api/protocol-v2/DevReboot.d.ts.map +0 -1
- package/dist/api/protocol-v2/DeviceGetDeviceInfo.d.ts +0 -29
- package/dist/api/protocol-v2/DeviceGetDeviceInfo.d.ts.map +0 -1
- package/dist/api/protocol-v2/FactoryDeviceInfoSettings.d.ts +0 -7
- package/dist/api/protocol-v2/FactoryDeviceInfoSettings.d.ts.map +0 -1
- package/dist/api/protocol-v2/FactoryGetDeviceInfo.d.ts +0 -6
- package/dist/api/protocol-v2/FactoryGetDeviceInfo.d.ts.map +0 -1
- package/dist/api/protocol-v2/FilesystemDiskControl.d.ts +0 -13
- package/dist/api/protocol-v2/FilesystemDiskControl.d.ts.map +0 -1
- package/dist/api/protocol-v2/FilesystemFixPermission.d.ts.map +0 -1
- package/dist/api/protocol-v2/GetProtoVersion.d.ts +0 -6
- package/dist/api/protocol-v2/GetProtoVersion.d.ts.map +0 -1
- package/dist/deviceProfile/buildDeviceProfile.d.ts +0 -21
- package/dist/deviceProfile/buildDeviceProfile.d.ts.map +0 -1
- package/dist/types/api/getDeviceInfo.d.ts +0 -85
- package/dist/types/api/getDeviceInfo.d.ts.map +0 -1
- package/src/api/GetDeviceInfo.ts +0 -145
- package/src/api/protocol-v2/DevReboot.ts +0 -24
- package/src/api/protocol-v2/DeviceGetDeviceInfo.ts +0 -118
- package/src/api/protocol-v2/FactoryDeviceInfoSettings.ts +0 -29
- package/src/api/protocol-v2/FilesystemDiskControl.ts +0 -50
- package/src/deviceProfile/buildDeviceProfile.ts +0 -334
- package/src/types/api/getDeviceInfo.ts +0 -99
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
import { EDeviceType, HardwareErrorCode } from '@onekeyfe/hd-shared';
|
|
2
|
+
|
|
3
|
+
import GetPassphraseState from '../src/api/GetPassphraseState';
|
|
4
|
+
import OpenWalletSession from '../src/api/OpenWalletSession';
|
|
5
|
+
import { deviceWalletSessionStore } from '../src/device/DeviceWalletSessionStore';
|
|
6
|
+
|
|
7
|
+
jest.mock('../src/data/config', () => ({
|
|
8
|
+
getSDKVersion: jest.fn(() => '1.0.0'),
|
|
9
|
+
DEFAULT_DOMAIN: 'https://jssdk.onekey.so/1.0.0/',
|
|
10
|
+
}));
|
|
11
|
+
|
|
12
|
+
const createDevice = ({
|
|
13
|
+
passphraseProtection = true,
|
|
14
|
+
typedCall = jest.fn(),
|
|
15
|
+
promptPassphrase = jest.fn(),
|
|
16
|
+
}: {
|
|
17
|
+
passphraseProtection?: boolean;
|
|
18
|
+
typedCall?: jest.Mock;
|
|
19
|
+
promptPassphrase?: jest.Mock;
|
|
20
|
+
} = {}) => {
|
|
21
|
+
const device: Record<string, any> = {
|
|
22
|
+
passphraseState: undefined,
|
|
23
|
+
features: {
|
|
24
|
+
unlocked: true,
|
|
25
|
+
passphraseProtection,
|
|
26
|
+
attachToPinEnabled: false,
|
|
27
|
+
},
|
|
28
|
+
commands: { typedCall, promptPassphrase },
|
|
29
|
+
getDeviceState: jest.fn().mockResolvedValue({
|
|
30
|
+
identity: { deviceId: 'device-1' },
|
|
31
|
+
}),
|
|
32
|
+
getCurrentDeviceId: () => 'device-1',
|
|
33
|
+
getCurrentPassphraseProtection: () => passphraseProtection,
|
|
34
|
+
getInternalState: () =>
|
|
35
|
+
deviceWalletSessionStore.get('device-1', device.passphraseState as string | undefined),
|
|
36
|
+
updateInternalState: jest.fn(
|
|
37
|
+
(_enabled: boolean, passphraseState: string, deviceId: string, sessionId: string) => {
|
|
38
|
+
deviceWalletSessionStore.set(deviceId, passphraseState, sessionId);
|
|
39
|
+
}
|
|
40
|
+
),
|
|
41
|
+
clearInternalState: jest.fn(() => {
|
|
42
|
+
if (device.passphraseState) {
|
|
43
|
+
deviceWalletSessionStore.delete('device-1', device.passphraseState);
|
|
44
|
+
}
|
|
45
|
+
}),
|
|
46
|
+
lockDevice: jest.fn(),
|
|
47
|
+
unlockDevice: jest.fn(),
|
|
48
|
+
initialize: jest.fn(),
|
|
49
|
+
emit: jest.fn(),
|
|
50
|
+
isProtocolV2: () => true,
|
|
51
|
+
getCurrentFirmwareType: () => 'universal',
|
|
52
|
+
};
|
|
53
|
+
return device;
|
|
54
|
+
};
|
|
55
|
+
|
|
56
|
+
describe('openWalletSession', () => {
|
|
57
|
+
beforeEach(() => {
|
|
58
|
+
deviceWalletSessionStore.clear();
|
|
59
|
+
});
|
|
60
|
+
|
|
61
|
+
test('keeps getPassphraseState unsupported on Protocol V2', async () => {
|
|
62
|
+
const method = new GetPassphraseState({
|
|
63
|
+
payload: { method: 'getPassphraseState', connectId: 'connect-id' },
|
|
64
|
+
});
|
|
65
|
+
method.device = createDevice() as any;
|
|
66
|
+
|
|
67
|
+
await expect(method.run()).rejects.toMatchObject({
|
|
68
|
+
errorCode: HardwareErrorCode.DeviceNotSupportMethod,
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
test('keeps Legacy Protocol V1 getPassphraseState parameterless', async () => {
|
|
73
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
74
|
+
type: 'PassphraseState',
|
|
75
|
+
message: {
|
|
76
|
+
passphrase_state: 'current-wallet-state',
|
|
77
|
+
session_id: 'current-wallet-session',
|
|
78
|
+
unlocked_attach_pin: false,
|
|
79
|
+
},
|
|
80
|
+
});
|
|
81
|
+
const method = new GetPassphraseState({
|
|
82
|
+
payload: {
|
|
83
|
+
method: 'getPassphraseState',
|
|
84
|
+
connectId: 'connect-id',
|
|
85
|
+
useEmptyPassphrase: true,
|
|
86
|
+
initSession: true,
|
|
87
|
+
passphraseState: 'ignored-wallet-state',
|
|
88
|
+
},
|
|
89
|
+
});
|
|
90
|
+
const device = createDevice({ typedCall });
|
|
91
|
+
device.isProtocolV2 = () => false;
|
|
92
|
+
device.features = {
|
|
93
|
+
...device.features,
|
|
94
|
+
deviceId: 'device-1',
|
|
95
|
+
passphraseProtection: true,
|
|
96
|
+
unlocked: true,
|
|
97
|
+
sessionId: null,
|
|
98
|
+
};
|
|
99
|
+
device.getCurrentFirmwareVersionString = () => '4.15.0';
|
|
100
|
+
device.getCurrentDeviceType = () => EDeviceType.Pro;
|
|
101
|
+
device.getFeatures = jest.fn();
|
|
102
|
+
method.device = device as any;
|
|
103
|
+
|
|
104
|
+
await expect(method.run()).resolves.toBe('current-wallet-state');
|
|
105
|
+
expect(device.clearInternalState).not.toHaveBeenCalled();
|
|
106
|
+
expect(typedCall).toHaveBeenCalledWith('GetPassphraseState', 'PassphraseState', {
|
|
107
|
+
passphrase_state: undefined,
|
|
108
|
+
});
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
test('opens the standard wallet through the Protocol V1 empty-passphrase flow', async () => {
|
|
112
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
113
|
+
type: 'PassphraseState',
|
|
114
|
+
message: {
|
|
115
|
+
passphrase_state: 'main-wallet-state',
|
|
116
|
+
session_id: 'main-wallet-session',
|
|
117
|
+
unlocked_attach_pin: false,
|
|
118
|
+
},
|
|
119
|
+
});
|
|
120
|
+
const method = new OpenWalletSession({
|
|
121
|
+
payload: {
|
|
122
|
+
method: 'openWalletSession',
|
|
123
|
+
connectId: 'connect-id',
|
|
124
|
+
useEmptyPassphrase: true,
|
|
125
|
+
initSession: true,
|
|
126
|
+
passphraseState: 'stale-hidden-state',
|
|
127
|
+
},
|
|
128
|
+
});
|
|
129
|
+
method.init();
|
|
130
|
+
const device = createDevice({ typedCall });
|
|
131
|
+
device.isProtocolV2 = () => false;
|
|
132
|
+
device.features = {
|
|
133
|
+
...device.features,
|
|
134
|
+
deviceId: 'device-1',
|
|
135
|
+
unlocked: true,
|
|
136
|
+
sessionId: null,
|
|
137
|
+
};
|
|
138
|
+
device.getCurrentFirmwareVersionString = () => '4.15.0';
|
|
139
|
+
device.getCurrentDeviceType = () => EDeviceType.Pro;
|
|
140
|
+
device.getFeatures = jest.fn();
|
|
141
|
+
method.device = device as any;
|
|
142
|
+
|
|
143
|
+
await expect(method.run()).resolves.toEqual({
|
|
144
|
+
protocol: 'V1',
|
|
145
|
+
walletType: 'standard',
|
|
146
|
+
deviceId: 'device-1',
|
|
147
|
+
passphraseState: null,
|
|
148
|
+
resumed: false,
|
|
149
|
+
});
|
|
150
|
+
expect(method.payload.useEmptyPassphrase).toBe(true);
|
|
151
|
+
expect(typedCall).toHaveBeenCalledWith('GetPassphraseState', 'PassphraseState', {
|
|
152
|
+
passphrase_state: undefined,
|
|
153
|
+
});
|
|
154
|
+
expect(device.clearInternalState).toHaveBeenCalled();
|
|
155
|
+
});
|
|
156
|
+
|
|
157
|
+
test('uses the compatibility form to select a hidden wallet on Protocol V2', async () => {
|
|
158
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
159
|
+
message: {
|
|
160
|
+
btc_test_address: 'hidden-state',
|
|
161
|
+
session_id: 'hidden-session',
|
|
162
|
+
},
|
|
163
|
+
});
|
|
164
|
+
const promptPassphrase = jest.fn().mockResolvedValue({ passphrase: 'hidden secret' });
|
|
165
|
+
const method = new OpenWalletSession({
|
|
166
|
+
payload: { method: 'openWalletSession', connectId: 'connect-id' },
|
|
167
|
+
});
|
|
168
|
+
method.init();
|
|
169
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
170
|
+
|
|
171
|
+
await expect(method.run()).resolves.toMatchObject({
|
|
172
|
+
protocol: 'V2',
|
|
173
|
+
walletType: 'hidden',
|
|
174
|
+
passphraseState: 'hidden-state',
|
|
175
|
+
});
|
|
176
|
+
});
|
|
177
|
+
|
|
178
|
+
test('uses legacy initSession to replace a hidden-wallet session on Protocol V2', async () => {
|
|
179
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
180
|
+
message: {
|
|
181
|
+
btc_test_address: 'new-hidden-state',
|
|
182
|
+
session_id: 'new-hidden-session',
|
|
183
|
+
},
|
|
184
|
+
});
|
|
185
|
+
const promptPassphrase = jest.fn().mockResolvedValue({ passphrase: 'new hidden secret' });
|
|
186
|
+
const method = new OpenWalletSession({
|
|
187
|
+
payload: {
|
|
188
|
+
method: 'openWalletSession',
|
|
189
|
+
connectId: 'connect-id',
|
|
190
|
+
initSession: true,
|
|
191
|
+
deviceId: 'device-1',
|
|
192
|
+
passphraseState: 'stale-hidden-state',
|
|
193
|
+
},
|
|
194
|
+
});
|
|
195
|
+
method.init();
|
|
196
|
+
deviceWalletSessionStore.set('device-1', 'stale-hidden-state', 'stale-hidden-session');
|
|
197
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
198
|
+
|
|
199
|
+
await expect(method.run()).resolves.toEqual({
|
|
200
|
+
protocol: 'V2',
|
|
201
|
+
walletType: 'hidden',
|
|
202
|
+
deviceId: 'device-1',
|
|
203
|
+
passphraseState: 'new-hidden-state',
|
|
204
|
+
resumed: false,
|
|
205
|
+
});
|
|
206
|
+
expect(typedCall).toHaveBeenCalledWith('DeviceSessionGet', 'DeviceSession', {});
|
|
207
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
208
|
+
expect(deviceWalletSessionStore.get('device-1', 'stale-hidden-state')).toBeUndefined();
|
|
209
|
+
expect(deviceWalletSessionStore.get('device-1', 'new-hidden-state')).toBe('new-hidden-session');
|
|
210
|
+
});
|
|
211
|
+
|
|
212
|
+
test('does not clear another device wallet through legacy initSession', async () => {
|
|
213
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
214
|
+
message: {
|
|
215
|
+
btc_test_address: 'current-device-state',
|
|
216
|
+
session_id: 'current-device-session',
|
|
217
|
+
},
|
|
218
|
+
});
|
|
219
|
+
const promptPassphrase = jest.fn().mockResolvedValue({ passphrase: 'hidden secret' });
|
|
220
|
+
const method = new OpenWalletSession({
|
|
221
|
+
payload: {
|
|
222
|
+
method: 'openWalletSession',
|
|
223
|
+
connectId: 'connect-id',
|
|
224
|
+
initSession: true,
|
|
225
|
+
deviceId: 'other-device',
|
|
226
|
+
passphraseState: 'other-device-state',
|
|
227
|
+
},
|
|
228
|
+
});
|
|
229
|
+
method.init();
|
|
230
|
+
deviceWalletSessionStore.set('other-device', 'other-device-state', 'other-device-session');
|
|
231
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
232
|
+
|
|
233
|
+
await expect(method.run()).resolves.toMatchObject({
|
|
234
|
+
deviceId: 'device-1',
|
|
235
|
+
passphraseState: 'current-device-state',
|
|
236
|
+
resumed: false,
|
|
237
|
+
});
|
|
238
|
+
expect(deviceWalletSessionStore.get('other-device', 'other-device-state')).toBe(
|
|
239
|
+
'other-device-session'
|
|
240
|
+
);
|
|
241
|
+
});
|
|
242
|
+
|
|
243
|
+
test('uses a complete legacy wallet binding to resume on Protocol V2', async () => {
|
|
244
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
245
|
+
message: {
|
|
246
|
+
btc_test_address: 'hidden-state',
|
|
247
|
+
session_id: 'renewed-session',
|
|
248
|
+
},
|
|
249
|
+
});
|
|
250
|
+
const promptPassphrase = jest.fn();
|
|
251
|
+
const method = new OpenWalletSession({
|
|
252
|
+
payload: {
|
|
253
|
+
method: 'openWalletSession',
|
|
254
|
+
connectId: 'connect-id',
|
|
255
|
+
initSession: false,
|
|
256
|
+
deviceId: 'device-1',
|
|
257
|
+
passphraseState: 'hidden-state',
|
|
258
|
+
},
|
|
259
|
+
});
|
|
260
|
+
method.init();
|
|
261
|
+
deviceWalletSessionStore.set('device-1', 'hidden-state', 'known-session');
|
|
262
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
263
|
+
|
|
264
|
+
await expect(method.run()).resolves.toEqual({
|
|
265
|
+
protocol: 'V2',
|
|
266
|
+
walletType: 'hidden',
|
|
267
|
+
deviceId: 'device-1',
|
|
268
|
+
passphraseState: 'hidden-state',
|
|
269
|
+
resumed: true,
|
|
270
|
+
});
|
|
271
|
+
expect(typedCall).toHaveBeenCalledWith('DeviceSessionGet', 'DeviceSession', {
|
|
272
|
+
session_id: 'known-session',
|
|
273
|
+
});
|
|
274
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
275
|
+
});
|
|
276
|
+
|
|
277
|
+
test.each([
|
|
278
|
+
{
|
|
279
|
+
mode: 'standard',
|
|
280
|
+
initSession: true,
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
mode: 'select-hidden',
|
|
284
|
+
useEmptyPassphrase: false,
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
mode: 'select-hidden',
|
|
288
|
+
deviceId: 'device-1',
|
|
289
|
+
passphraseState: 'hidden-state',
|
|
290
|
+
},
|
|
291
|
+
{
|
|
292
|
+
mode: 'resume-hidden',
|
|
293
|
+
deviceId: 'device-1',
|
|
294
|
+
passphraseState: 'hidden-state',
|
|
295
|
+
initSession: false,
|
|
296
|
+
},
|
|
297
|
+
])('rejects legacy parameters combined with explicit mode: %o', params => {
|
|
298
|
+
const method = new OpenWalletSession({
|
|
299
|
+
payload: {
|
|
300
|
+
method: 'openWalletSession',
|
|
301
|
+
connectId: 'connect-id',
|
|
302
|
+
...params,
|
|
303
|
+
} as any,
|
|
304
|
+
});
|
|
305
|
+
|
|
306
|
+
expect(() => method.init()).toThrow(
|
|
307
|
+
expect.objectContaining({
|
|
308
|
+
errorCode: HardwareErrorCode.CallMethodInvalidParameter,
|
|
309
|
+
})
|
|
310
|
+
);
|
|
311
|
+
});
|
|
312
|
+
|
|
313
|
+
test.each([{ initSession: 'true' }, { useEmptyPassphrase: 'false' }])(
|
|
314
|
+
'rejects a non-boolean legacy flag: %o',
|
|
315
|
+
params => {
|
|
316
|
+
const method = new OpenWalletSession({
|
|
317
|
+
payload: {
|
|
318
|
+
method: 'openWalletSession',
|
|
319
|
+
connectId: 'connect-id',
|
|
320
|
+
...params,
|
|
321
|
+
} as any,
|
|
322
|
+
});
|
|
323
|
+
|
|
324
|
+
expect(() => method.init()).toThrow(
|
|
325
|
+
expect.objectContaining({
|
|
326
|
+
errorCode: HardwareErrorCode.CallMethodInvalidParameter,
|
|
327
|
+
})
|
|
328
|
+
);
|
|
329
|
+
}
|
|
330
|
+
);
|
|
331
|
+
|
|
332
|
+
test('reuses the SDK-managed Protocol V1 hidden-wallet session before validation', async () => {
|
|
333
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
334
|
+
type: 'PassphraseState',
|
|
335
|
+
message: {
|
|
336
|
+
passphrase_state: 'hidden-state',
|
|
337
|
+
session_id: 'known-session',
|
|
338
|
+
unlocked_attach_pin: false,
|
|
339
|
+
},
|
|
340
|
+
});
|
|
341
|
+
const method = new OpenWalletSession({
|
|
342
|
+
payload: {
|
|
343
|
+
method: 'openWalletSession',
|
|
344
|
+
connectId: 'connect-id',
|
|
345
|
+
mode: 'resume-hidden',
|
|
346
|
+
deviceId: 'device-1',
|
|
347
|
+
passphraseState: 'hidden-state',
|
|
348
|
+
},
|
|
349
|
+
});
|
|
350
|
+
method.init();
|
|
351
|
+
deviceWalletSessionStore.set('device-1', 'hidden-state', 'known-session');
|
|
352
|
+
const device = createDevice({ typedCall });
|
|
353
|
+
device.isProtocolV2 = () => false;
|
|
354
|
+
device.features = {
|
|
355
|
+
...device.features,
|
|
356
|
+
deviceId: 'device-1',
|
|
357
|
+
unlocked: true,
|
|
358
|
+
sessionId: null,
|
|
359
|
+
};
|
|
360
|
+
device.getCurrentFirmwareVersionString = () => '4.15.0';
|
|
361
|
+
device.getCurrentDeviceType = () => EDeviceType.Pro;
|
|
362
|
+
device.getFeatures = jest.fn();
|
|
363
|
+
method.device = device as any;
|
|
364
|
+
|
|
365
|
+
await expect(method.run()).resolves.toMatchObject({
|
|
366
|
+
protocol: 'V1',
|
|
367
|
+
walletType: 'hidden',
|
|
368
|
+
passphraseState: 'hidden-state',
|
|
369
|
+
resumed: true,
|
|
370
|
+
});
|
|
371
|
+
expect(device.initialize).toHaveBeenCalledWith({
|
|
372
|
+
deviceId: 'device-1',
|
|
373
|
+
passphraseState: 'hidden-state',
|
|
374
|
+
});
|
|
375
|
+
expect(typedCall).toHaveBeenCalledWith('GetPassphraseState', 'PassphraseState', {
|
|
376
|
+
passphrase_state: 'hidden-state',
|
|
377
|
+
});
|
|
378
|
+
});
|
|
379
|
+
|
|
380
|
+
test('opens the standard wallet without selecting a hidden wallet', async () => {
|
|
381
|
+
const typedCall = jest.fn();
|
|
382
|
+
const promptPassphrase = jest.fn();
|
|
383
|
+
const method = new OpenWalletSession({
|
|
384
|
+
payload: { method: 'openWalletSession', connectId: 'connect-id', mode: 'standard' },
|
|
385
|
+
});
|
|
386
|
+
method.init();
|
|
387
|
+
const device = createDevice({ typedCall, promptPassphrase });
|
|
388
|
+
device.passphraseState = 'previous-hidden-state';
|
|
389
|
+
method.device = device as any;
|
|
390
|
+
|
|
391
|
+
await expect(method.run()).resolves.toEqual({
|
|
392
|
+
protocol: 'V2',
|
|
393
|
+
walletType: 'standard',
|
|
394
|
+
deviceId: 'device-1',
|
|
395
|
+
passphraseState: null,
|
|
396
|
+
resumed: false,
|
|
397
|
+
});
|
|
398
|
+
expect(typedCall).not.toHaveBeenCalled();
|
|
399
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
400
|
+
expect(device.passphraseState).toBeUndefined();
|
|
401
|
+
});
|
|
402
|
+
|
|
403
|
+
test('rejects a standard-wallet request when Protocol V2 is unlocked by Attach PIN', async () => {
|
|
404
|
+
const method = new OpenWalletSession({
|
|
405
|
+
payload: { method: 'openWalletSession', connectId: 'connect-id', mode: 'standard' },
|
|
406
|
+
});
|
|
407
|
+
method.init();
|
|
408
|
+
const device = createDevice();
|
|
409
|
+
device.features.unlockedAttachPin = true;
|
|
410
|
+
method.device = device as any;
|
|
411
|
+
|
|
412
|
+
await expect(method.run()).rejects.toMatchObject({
|
|
413
|
+
errorCode: HardwareErrorCode.DeviceCheckUnlockTypeError,
|
|
414
|
+
});
|
|
415
|
+
expect(device.lockDevice).toHaveBeenCalled();
|
|
416
|
+
expect(device.clearInternalState).toHaveBeenCalled();
|
|
417
|
+
});
|
|
418
|
+
|
|
419
|
+
test('selects a hidden wallet and keeps the session inside the SDK store', async () => {
|
|
420
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
421
|
+
message: {
|
|
422
|
+
btc_test_address: 'hidden-state',
|
|
423
|
+
session_id: 'hidden-session',
|
|
424
|
+
},
|
|
425
|
+
});
|
|
426
|
+
const promptPassphrase = jest.fn().mockResolvedValue({ passphrase: 'hidden secret' });
|
|
427
|
+
const method = new OpenWalletSession({
|
|
428
|
+
payload: { method: 'openWalletSession', connectId: 'connect-id', mode: 'select-hidden' },
|
|
429
|
+
});
|
|
430
|
+
method.init();
|
|
431
|
+
const device = createDevice({ typedCall, promptPassphrase });
|
|
432
|
+
device.passphraseState = 'previous-hidden-state';
|
|
433
|
+
method.device = device as any;
|
|
434
|
+
|
|
435
|
+
await expect(method.run()).resolves.toEqual({
|
|
436
|
+
protocol: 'V2',
|
|
437
|
+
walletType: 'hidden',
|
|
438
|
+
deviceId: 'device-1',
|
|
439
|
+
passphraseState: 'hidden-state',
|
|
440
|
+
resumed: false,
|
|
441
|
+
});
|
|
442
|
+
expect(typedCall).toHaveBeenCalledWith('DeviceSessionGet', 'DeviceSession', {});
|
|
443
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
444
|
+
expect(device.passphraseState).toBeUndefined();
|
|
445
|
+
expect(deviceWalletSessionStore.get('device-1', 'hidden-state')).toBe('hidden-session');
|
|
446
|
+
});
|
|
447
|
+
|
|
448
|
+
test.each([
|
|
449
|
+
{
|
|
450
|
+
missingField: 'session_id',
|
|
451
|
+
message: { btc_test_address: 'hidden-state' },
|
|
452
|
+
},
|
|
453
|
+
{
|
|
454
|
+
missingField: 'btc_test_address',
|
|
455
|
+
message: { session_id: 'hidden-session' },
|
|
456
|
+
},
|
|
457
|
+
])(
|
|
458
|
+
'rejects an incomplete Protocol V2 hidden-wallet response missing $missingField',
|
|
459
|
+
async ({ message }) => {
|
|
460
|
+
const typedCall = jest.fn().mockResolvedValue({ message });
|
|
461
|
+
const promptPassphrase = jest.fn().mockResolvedValue({ passphrase: 'hidden secret' });
|
|
462
|
+
const method = new OpenWalletSession({
|
|
463
|
+
payload: { method: 'openWalletSession', connectId: 'connect-id', mode: 'select-hidden' },
|
|
464
|
+
});
|
|
465
|
+
method.init();
|
|
466
|
+
const device = createDevice({ typedCall, promptPassphrase });
|
|
467
|
+
method.device = device as any;
|
|
468
|
+
|
|
469
|
+
await expect(method.run()).rejects.toMatchObject({
|
|
470
|
+
errorCode: HardwareErrorCode.RuntimeError,
|
|
471
|
+
message: 'DeviceSessionGet returned an incomplete DeviceSession response.',
|
|
472
|
+
});
|
|
473
|
+
expect(device.clearInternalState).toHaveBeenCalled();
|
|
474
|
+
expect(device.updateInternalState).not.toHaveBeenCalled();
|
|
475
|
+
}
|
|
476
|
+
);
|
|
477
|
+
|
|
478
|
+
test('resumes a known hidden wallet without prompting or device selection', async () => {
|
|
479
|
+
const typedCall = jest.fn().mockResolvedValue({
|
|
480
|
+
message: {
|
|
481
|
+
btc_test_address: 'hidden-state',
|
|
482
|
+
session_id: 'renewed-session',
|
|
483
|
+
},
|
|
484
|
+
});
|
|
485
|
+
const promptPassphrase = jest.fn();
|
|
486
|
+
const method = new OpenWalletSession({
|
|
487
|
+
payload: {
|
|
488
|
+
method: 'openWalletSession',
|
|
489
|
+
connectId: 'connect-id',
|
|
490
|
+
mode: 'resume-hidden',
|
|
491
|
+
deviceId: 'device-1',
|
|
492
|
+
passphraseState: 'hidden-state',
|
|
493
|
+
},
|
|
494
|
+
});
|
|
495
|
+
method.init();
|
|
496
|
+
deviceWalletSessionStore.set('device-1', 'hidden-state', 'known-session');
|
|
497
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
498
|
+
|
|
499
|
+
await expect(method.run()).resolves.toEqual({
|
|
500
|
+
protocol: 'V2',
|
|
501
|
+
walletType: 'hidden',
|
|
502
|
+
deviceId: 'device-1',
|
|
503
|
+
passphraseState: 'hidden-state',
|
|
504
|
+
resumed: true,
|
|
505
|
+
});
|
|
506
|
+
expect(typedCall).toHaveBeenCalledWith('DeviceSessionGet', 'DeviceSession', {
|
|
507
|
+
session_id: 'known-session',
|
|
508
|
+
});
|
|
509
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
510
|
+
});
|
|
511
|
+
|
|
512
|
+
test('does not fall back to wallet selection when a cached resume is invalid', async () => {
|
|
513
|
+
const typedCall = jest.fn().mockRejectedValue(
|
|
514
|
+
Object.assign(new Error('Invalid session'), {
|
|
515
|
+
errorCode: HardwareErrorCode.WalletSessionInvalid,
|
|
516
|
+
})
|
|
517
|
+
);
|
|
518
|
+
const promptPassphrase = jest.fn();
|
|
519
|
+
const method = new OpenWalletSession({
|
|
520
|
+
payload: {
|
|
521
|
+
method: 'openWalletSession',
|
|
522
|
+
connectId: 'connect-id',
|
|
523
|
+
mode: 'resume-hidden',
|
|
524
|
+
deviceId: 'device-1',
|
|
525
|
+
passphraseState: 'hidden-state',
|
|
526
|
+
},
|
|
527
|
+
});
|
|
528
|
+
method.init();
|
|
529
|
+
deviceWalletSessionStore.set('device-1', 'hidden-state', 'expired-session');
|
|
530
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
531
|
+
|
|
532
|
+
await expect(method.run()).rejects.toMatchObject({
|
|
533
|
+
errorCode: HardwareErrorCode.WalletSessionInvalid,
|
|
534
|
+
});
|
|
535
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
536
|
+
});
|
|
537
|
+
|
|
538
|
+
test('rejects resume-hidden when the SDK store has no matching session', async () => {
|
|
539
|
+
const typedCall = jest.fn();
|
|
540
|
+
const promptPassphrase = jest.fn();
|
|
541
|
+
const method = new OpenWalletSession({
|
|
542
|
+
payload: {
|
|
543
|
+
method: 'openWalletSession',
|
|
544
|
+
connectId: 'connect-id',
|
|
545
|
+
mode: 'resume-hidden',
|
|
546
|
+
deviceId: 'device-1',
|
|
547
|
+
passphraseState: 'hidden-state',
|
|
548
|
+
},
|
|
549
|
+
});
|
|
550
|
+
method.init();
|
|
551
|
+
method.device = createDevice({ typedCall, promptPassphrase }) as any;
|
|
552
|
+
|
|
553
|
+
await expect(method.run()).rejects.toMatchObject({
|
|
554
|
+
errorCode: HardwareErrorCode.WalletSessionInvalid,
|
|
555
|
+
});
|
|
556
|
+
expect(typedCall).not.toHaveBeenCalled();
|
|
557
|
+
expect(promptPassphrase).not.toHaveBeenCalled();
|
|
558
|
+
});
|
|
559
|
+
});
|
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { Device } from '../src/device/Device';
|
|
2
|
+
import { initCore } from '../src/core';
|
|
3
|
+
import PreInitialize from '../src/api/device/PreInitialize';
|
|
4
|
+
import { IFRAME } from '../src/events';
|
|
5
|
+
|
|
6
|
+
import type Core from '../src/core';
|
|
2
7
|
|
|
3
8
|
jest.mock('../src/data/config', () => ({
|
|
4
9
|
getSDKVersion: jest.fn(() => '1.0.0'),
|
|
@@ -6,6 +11,10 @@ jest.mock('../src/data/config', () => ({
|
|
|
6
11
|
}));
|
|
7
12
|
|
|
8
13
|
describe('preInitialize', () => {
|
|
14
|
+
afterEach(() => {
|
|
15
|
+
jest.restoreAllMocks();
|
|
16
|
+
});
|
|
17
|
+
|
|
9
18
|
it('matches pre-initialized state by passphraseState only', () => {
|
|
10
19
|
const device = Object.create(Device.prototype) as Device;
|
|
11
20
|
|
|
@@ -19,4 +28,28 @@ describe('preInitialize', () => {
|
|
|
19
28
|
})
|
|
20
29
|
).toBe(true);
|
|
21
30
|
});
|
|
31
|
+
|
|
32
|
+
it('cleans request lifecycle when preInitialize is acknowledged without connectId', async () => {
|
|
33
|
+
const core: Core = initCore();
|
|
34
|
+
const disposeSpy = jest.spyOn(PreInitialize.prototype, 'dispose');
|
|
35
|
+
|
|
36
|
+
try {
|
|
37
|
+
const response = await core.handleMessage({
|
|
38
|
+
id: 1001,
|
|
39
|
+
type: IFRAME.CALL,
|
|
40
|
+
payload: {
|
|
41
|
+
method: 'preInitialize',
|
|
42
|
+
},
|
|
43
|
+
} as any);
|
|
44
|
+
|
|
45
|
+
expect(response).toMatchObject({
|
|
46
|
+
success: true,
|
|
47
|
+
payload: true,
|
|
48
|
+
});
|
|
49
|
+
expect((core as any).tracingContext.activeRequests.has(1001)).toBe(false);
|
|
50
|
+
expect(disposeSpy).toHaveBeenCalledTimes(1);
|
|
51
|
+
} finally {
|
|
52
|
+
core.dispose();
|
|
53
|
+
}
|
|
54
|
+
});
|
|
22
55
|
});
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { encodePro2Wallpaper } from '../src/utils/pro2Wallpaper';
|
|
2
|
+
|
|
3
|
+
describe('encodePro2Wallpaper', () => {
|
|
4
|
+
test('encodes opaque pixels as aligned LVGL v9 RGB565 data', () => {
|
|
5
|
+
const result = encodePro2Wallpaper({
|
|
6
|
+
width: 2,
|
|
7
|
+
height: 1,
|
|
8
|
+
rgba: new Uint8Array([255, 0, 0, 255, 0, 255, 0, 255]),
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
expect(result.colorFormat).toBe('RGB565');
|
|
12
|
+
expect(Array.from(result.data.slice(0, 12))).toEqual([
|
|
13
|
+
0x19,
|
|
14
|
+
0x12,
|
|
15
|
+
0,
|
|
16
|
+
0,
|
|
17
|
+
2,
|
|
18
|
+
0,
|
|
19
|
+
1,
|
|
20
|
+
0,
|
|
21
|
+
4,
|
|
22
|
+
0,
|
|
23
|
+
0,
|
|
24
|
+
0,
|
|
25
|
+
]);
|
|
26
|
+
expect(Array.from(result.data.slice(12))).toEqual([0x00, 0xf0, 0xc0, 0x07]);
|
|
27
|
+
});
|
|
28
|
+
|
|
29
|
+
test('encodes transparent pixels as RGB565A8 with alpha plane after RGB data', () => {
|
|
30
|
+
const result = encodePro2Wallpaper({
|
|
31
|
+
width: 2,
|
|
32
|
+
height: 1,
|
|
33
|
+
rgba: new Uint8Array([0, 0, 255, 128, 255, 255, 255, 255]),
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
expect(result.colorFormat).toBe('RGB565A8');
|
|
37
|
+
expect(result.data[1]).toBe(0x14);
|
|
38
|
+
expect(Array.from(result.data.slice(8, 10))).toEqual([4, 0]);
|
|
39
|
+
expect(Array.from(result.data.slice(12))).toEqual([0x1f, 0x00, 0xff, 0xff, 128, 255]);
|
|
40
|
+
});
|
|
41
|
+
|
|
42
|
+
test('rejects invalid dimensions and RGBA byte length', () => {
|
|
43
|
+
expect(() =>
|
|
44
|
+
encodePro2Wallpaper({ width: 0, height: 1, rgba: new Uint8Array() })
|
|
45
|
+
).toThrow('width');
|
|
46
|
+
expect(() =>
|
|
47
|
+
encodePro2Wallpaper({ width: 2, height: 1, rgba: new Uint8Array(4) })
|
|
48
|
+
).toThrow('8');
|
|
49
|
+
});
|
|
50
|
+
});
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Device } from '../src/device/Device';
|
|
2
|
+
import { UI_REQUEST } from '../src/events/ui-request';
|
|
3
|
+
|
|
4
|
+
jest.mock('../src/data/config', () => ({
|
|
5
|
+
getSDKVersion: jest.fn(() => '1.0.0'),
|
|
6
|
+
DEFAULT_DOMAIN: 'https://jssdk.onekey.so/1.0.0/',
|
|
7
|
+
}));
|
|
8
|
+
|
|
9
|
+
const createBootloaderDevice = (protocolType: 'V1' | 'V2') => {
|
|
10
|
+
const device = Device.fromDescriptor({
|
|
11
|
+
id: `${protocolType.toLowerCase()}-bootloader`,
|
|
12
|
+
path: `${protocolType.toLowerCase()}-bootloader`,
|
|
13
|
+
protocolType,
|
|
14
|
+
} as any);
|
|
15
|
+
|
|
16
|
+
(device as any).features = {
|
|
17
|
+
bootloaderMode: true,
|
|
18
|
+
initialized: true,
|
|
19
|
+
noBackup: false,
|
|
20
|
+
};
|
|
21
|
+
|
|
22
|
+
return device;
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
describe('Pro2 bootloader mode', () => {
|
|
26
|
+
test('does not block Protocol V2 methods in bootloader mode', () => {
|
|
27
|
+
const device = createBootloaderDevice('V2');
|
|
28
|
+
|
|
29
|
+
expect(device.hasUnexpectedMode([], [])).toBeNull();
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
test('keeps the Protocol V1 bootloader restriction', () => {
|
|
33
|
+
const device = createBootloaderDevice('V1');
|
|
34
|
+
|
|
35
|
+
expect(device.hasUnexpectedMode([], [])).toBe(UI_REQUEST.BOOTLOADER);
|
|
36
|
+
});
|
|
37
|
+
});
|