-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 parent
1ac1221
commit e40a150
Showing
32 changed files
with
1,131 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"presets": [ | ||
[ | ||
"@nx/react/babel", | ||
{ | ||
"runtime": "automatic", | ||
"useBuiltIns": "usage" | ||
} | ||
] | ||
], | ||
"plugins": [] | ||
} |
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,21 @@ | ||
{ | ||
"extends": ["plugin:@nx/react", "../../.eslintrc.json"], | ||
"ignorePatterns": ["!**/*"], | ||
"rules": { | ||
"@nx/dependency-checks": [ | ||
"error", | ||
{ | ||
"ignoredFiles": ["libs/mocks/rollup.config.js"] | ||
} | ||
] | ||
}, | ||
"overrides": [ | ||
{ | ||
"files": ["*.json"], | ||
"parser": "jsonc-eslint-parser", | ||
"rules": { | ||
"@nx/dependency-checks": "error" | ||
} | ||
} | ||
] | ||
} |
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,3 @@ | ||
# mocks | ||
|
||
Shared mocks for testing across all libraries and apps. |
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,17 @@ | ||
/* eslint-disable */ | ||
export default { | ||
displayName: 'mocks', | ||
preset: '../../jest.preset.js', | ||
transform: { | ||
'^(?!.*\\.(js|jsx|ts|tsx|css|json)$)': '@nx/react/plugins/jest', | ||
'^.+\\.[tj]sx?$': [ | ||
'babel-jest', | ||
{ | ||
presets: ['@nx/next/babel'], | ||
plugins: ['@babel/plugin-transform-private-methods'], | ||
}, | ||
], | ||
}, | ||
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx'], | ||
coverageDirectory: '../../coverage/libs/mocks', | ||
} |
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,14 @@ | ||
{ | ||
"name": "@siafoundation/mocks", | ||
"description": "Shared mocks for testing across all libraries and apps.", | ||
"version": "0.0.0", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@siafoundation/types": "0.1.3", | ||
"@siafoundation/react-walletd": "3.0.0", | ||
"@siafoundation/units": "3.0.0", | ||
"@siafoundation/sia-central": "0.3.3", | ||
"playwright": "^1.42.1" | ||
}, | ||
"types": "./src/index.d.ts" | ||
} |
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,42 @@ | ||
{ | ||
"name": "mocks", | ||
"$schema": "../../node_modules/nx/schemas/project-schema.json", | ||
"sourceRoot": "libs/mocks/src", | ||
"projectType": "library", | ||
"tags": [], | ||
"targets": { | ||
"build": { | ||
"executor": "@nx/rollup:rollup", | ||
"outputs": ["{options.outputPath}"], | ||
"options": { | ||
"outputPath": "dist/libs/mocks", | ||
"tsConfig": "libs/mocks/tsconfig.lib.json", | ||
"project": "libs/mocks/package.json", | ||
"entryFile": "libs/mocks/src/index.ts", | ||
"external": ["react/jsx-runtime"], | ||
"compiler": "tsc", | ||
"outputFileName": "index.js", | ||
"rollupConfig": "libs/mocks/rollup.config.js", | ||
"assets": [ | ||
{ | ||
"glob": "libs/mocks/*.md", | ||
"input": ".", | ||
"output": "." | ||
} | ||
] | ||
}, | ||
"configurations": {} | ||
}, | ||
"lint": { | ||
"executor": "@nx/eslint:lint", | ||
"outputs": ["{options.outputFile}"] | ||
}, | ||
"test": { | ||
"executor": "@nx/jest:jest", | ||
"outputs": ["{workspaceRoot}/coverage/libs/mocks"], | ||
"options": { | ||
"jestConfig": "libs/mocks/jest.config.ts" | ||
} | ||
} | ||
} | ||
} |
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,18 @@ | ||
// eslint-disable-next-line @typescript-eslint/no-var-requires | ||
const preserveDirectives = require('rollup-plugin-preserve-directives') | ||
|
||
// https://github.com/rollup/rollup/issues/4699#issuecomment-1465302665 | ||
function getRollupOptions(options) { | ||
return { | ||
...options, | ||
output: { | ||
...options.output, | ||
preserveModules: true, | ||
format: 'esm', | ||
sourcemap: true, | ||
}, | ||
plugins: options.plugins.concat(preserveDirectives.default()), | ||
} | ||
} | ||
|
||
module.exports = getRollupOptions |
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,20 @@ | ||
export * from './siaCentral/siaCentralExchangeRates' | ||
|
||
export * from './walletd/consensusNetwork' | ||
export * from './walletd/consensusTip' | ||
export * from './walletd/consensusTipState' | ||
export * from './walletd/defaults' | ||
export * from './walletd/peers' | ||
export * from './walletd/txPoolBroadcast' | ||
export * from './walletd/wallet' | ||
export * from './walletd/walletAddresses' | ||
export * from './walletd/walletBalance' | ||
export * from './walletd/walletEvents' | ||
export * from './walletd/walletFund' | ||
export * from './walletd/walletOutputsSiacoin' | ||
export * from './walletd/walletOutputsSiafund' | ||
export * from './walletd/walletRelease' | ||
export * from './walletd/wallets' | ||
export * from './walletd/walletTxPool' | ||
|
||
export * from './scenarios/seedWallet' |
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,190 @@ | ||
import { SiacoinElement, SiafundElement } from '@siafoundation/types' | ||
import { | ||
Wallet, | ||
WalletAddress, | ||
WalletBalanceResponse, | ||
WalletFundResponse, | ||
} from '@siafoundation/react-walletd' | ||
import { toHastings } from '@siafoundation/units' | ||
import { getMockConsensusNetworkResponse } from '../walletd/consensusNetwork' | ||
import { getMockConsensusTipStateResponse } from '../walletd/consensusTipState' | ||
|
||
export function getMockScenarioSeedWallet() { | ||
const mnemonic = | ||
'ridge business wish transfer home glove office salt wealth baby journey diary' | ||
|
||
const receiveAddress = | ||
'5739945c21e60afd70eaf97ccd33ea27836e0219212449f39e4b38acaa8b3119aa4150a9ef0f' | ||
const changeAddress = | ||
'170173c40ca0f39f9618da30af14c390c7ce70248a3662a7a5d3d5a8a31c9fbfa2071e9f6518' | ||
|
||
const newWallet: Wallet = { | ||
id: '100', | ||
name: 'test send wallet', | ||
description: 'wallet description', | ||
dateCreated: new Date().toISOString(), | ||
lastUpdated: new Date().toISOString(), | ||
metadata: { | ||
type: 'seed', | ||
mnemonicHash: | ||
'251cc9d01333287e9c9f39fc4749095a28a3970348a6106244848d2c414a908bc81ae4982911435a045a407fb305b69e51d05ce6f9b47ef1750c1e74ca299a48', | ||
}, | ||
} | ||
|
||
const walletBalanceResponse: WalletBalanceResponse = { | ||
siacoins: toHastings('100').toString(), | ||
immatureSiacoins: toHastings('10').toString(), | ||
siafunds: 10, | ||
} | ||
|
||
const walletOutputsSiacoinResponse: SiacoinElement[] = [ | ||
{ | ||
id: 'h:aa3e781330c9b3991e0141807df1327fadf114ca6c37acb9e58004f942d91dfb', | ||
leafIndex: 304248, | ||
merkleProof: [ | ||
'h:0a7a4c392f78899e3c38c5cd9e6a673b2c7afec97930af539af9c8e20209aa78', | ||
'h:a1e074dc48634a234b7366a0d7ab19cd05e3e698e1d44bf07e24d75ae0c65b3c', | ||
'h:44d107342962e2068d289ce090c87b7bf0c847f734bdfad10db5546e402c3ad7', | ||
'h:64ea3e65ecd5ebc1c0ce014673148060855ce550571208b6303b8e2a83e33451', | ||
'h:19e37bf7747c6d8c7b87d2474dbbd3a8f5b26d89642f8e1af4b9b02abdfb2ea6', | ||
'h:1fc2ac9f70211a3be6f334db14feb8b327458aee49d3539770640cbdec9b4a5f', | ||
'h:defbbc18c64349f11e75537955861ececce0fadf10baec456f6c74b024820af1', | ||
'h:87d27ff868ca3b1dce59ae754eaec48239718e81e2e6f3b7b418f5a00362bcf7', | ||
'h:93d823c55fbd09de462a8e355921433b3693d63de58ea8e2780a2c2ffabd0fee', | ||
'h:a68820d6b79b2735b15c69d0fc26b11252bb27f22b9088559ed13f9420f5dda1', | ||
'h:1bbcead690290291ea9628214a121ef783411693975171803bf5716a3a6ff19b', | ||
], | ||
siacoinOutput: { | ||
value: '1000000000000000000000000', | ||
address: | ||
'addr:f2dbf56b5b0c698d7fbf43f646c76169d84e597e8b37fada97348beeecaa812d400ac4ce7981', | ||
}, | ||
maturityHeight: 0, | ||
}, | ||
{ | ||
id: 'h:32e430158591b4073a6834e9f4c4b67162e348844f569f4e472896bb72efb724', | ||
leafIndex: 305723, | ||
merkleProof: [ | ||
'h:8c02aeec48de589ce497ebe72fb8b527cfe022ef513fcfdc56745c84832f00ec', | ||
'h:1bf63b9959e60272fd7a48a8cecd4120a852c0e14557ea27ccad6ea2071e70b3', | ||
'h:21b7e1606e9fd677059c58a1a687682182f71ce09e071431dcaff823a3a5d49e', | ||
'h:e81ac37d3b4db6166dc1bb10ebfa49f57cbf99aababd36ee4e3e5e12082dc6dc', | ||
'h:ecc307c6c3e505d97ccf821938e5e5702ef0130d33c991ca95735f7d9706a4b8', | ||
'h:9560060ee399793f102e092afdfdbdd33692706256955e8390af552de0addfc0', | ||
], | ||
siacoinOutput: { | ||
value: '97988210000000000000000000', | ||
address: | ||
'addr:f2dbf56b5b0c698d7fbf43f646c76169d84e597e8b37fada97348beeecaa812d400ac4ce7981', | ||
}, | ||
maturityHeight: 0, | ||
}, | ||
] | ||
|
||
const walletOutputsSiafundResponse: SiafundElement[] = [] | ||
|
||
const walletFundResponse: WalletFundResponse = { | ||
transaction: { | ||
siacoinInputs: [ | ||
{ | ||
parentID: | ||
'scoid:aa3e781330c9b3991e0141807df1327fadf114ca6c37acb9e58004f942d91dfb', | ||
unlockConditions: { | ||
timelock: 0, | ||
publicKeys: null, | ||
signaturesRequired: 1, | ||
}, | ||
}, | ||
{ | ||
parentID: | ||
'scoid:32e430158591b4073a6834e9f4c4b67162e348844f569f4e472896bb72efb724', | ||
unlockConditions: { | ||
timelock: 0, | ||
publicKeys: null, | ||
signaturesRequired: 1, | ||
}, | ||
}, | ||
], | ||
siacoinOutputs: [ | ||
{ | ||
value: '1000000000000000000000000', | ||
address: | ||
'addr:90c6057cdd2463eca61f83796e83152dbba28b6cb9a74831a043833051ec9f422726bfff2ee8', | ||
}, | ||
{ | ||
value: '97984280000000000000000000', | ||
address: | ||
'addr:f2dbf56b5b0c698d7fbf43f646c76169d84e597e8b37fada97348beeecaa812d400ac4ce7981', | ||
}, | ||
], | ||
minerFees: ['3930000000000000000000'], | ||
}, | ||
toSign: [ | ||
'h:aa3e781330c9b3991e0141807df1327fadf114ca6c37acb9e58004f942d91dfb', | ||
'h:32e430158591b4073a6834e9f4c4b67162e348844f569f4e472896bb72efb724', | ||
], | ||
dependsOn: null, | ||
} | ||
|
||
const walletAddressesResponse: WalletAddress[] = [ | ||
{ | ||
address: | ||
'addr:f2dbf56b5b0c698d7fbf43f646c76169d84e597e8b37fada97348beeecaa812d400ac4ce7981', | ||
description: '', | ||
metadata: { | ||
index: 0, | ||
unlockConditions: { | ||
timelock: 0, | ||
signaturesRequired: 1, | ||
publicKeys: [ | ||
'ed25519:ee122b2169bdae5776b55609e384e0c58372cd5c529d4edc9b9918b26f8e5535', | ||
], | ||
}, | ||
}, | ||
}, | ||
{ | ||
address: | ||
'addr:90c6057cdd2463eca61f83796e83152dbba28b6cb9a74831a043833051ec9f422726bfff2ee8', | ||
description: '', | ||
metadata: { | ||
index: 1, | ||
unlockConditions: { | ||
timelock: 0, | ||
signaturesRequired: 1, | ||
publicKeys: [ | ||
'ed25519:624d6d477a8f4ceac873e6dd9138740f9322cb34a24246f96f9d64c021172f43', | ||
], | ||
}, | ||
}, | ||
}, | ||
{ | ||
address: | ||
'addr:170173c40ca0f39f9618da30af14c390c7ce70248a3662a7a5d3d5a8a31c9fbfa2071e9f6518', | ||
description: '', | ||
metadata: { | ||
index: 2, | ||
unlockConditions: { | ||
timelock: 0, | ||
signaturesRequired: 1, | ||
publicKeys: [ | ||
'ed25519:65cac661a4acf36847c0aa67cbc6956e3449fd82a7430cfd673ea7fedbfcf5fa', | ||
], | ||
}, | ||
}, | ||
}, | ||
] | ||
|
||
return { | ||
consensusState: getMockConsensusTipStateResponse(), | ||
consensusNetwork: getMockConsensusNetworkResponse(), | ||
mnemonic, | ||
receiveAddress, | ||
changeAddress, | ||
newWallet, | ||
walletBalanceResponse, | ||
walletOutputsSiacoinResponse, | ||
walletOutputsSiafundResponse, | ||
walletFundResponse, | ||
walletAddressesResponse, | ||
} | ||
} |
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,39 @@ | ||
import { SiaCentralExchangeRatesResponse } from '@siafoundation/sia-central' | ||
import { Page } from 'playwright' | ||
|
||
export function getMockSiaCentralExchangeRatesResponse(): SiaCentralExchangeRatesResponse { | ||
return { | ||
message: 'successfully retrieved exchange rate', | ||
type: 'success', | ||
rates: { | ||
sc: { | ||
aud: '0.016136871549', | ||
bch: '0.000021499880703', | ||
btc: '0.000000149047', | ||
cad: '0.014328484298', | ||
cny: '0.076310722577', | ||
eth: '0.0000029068532077', | ||
eur: '0.009737538604', | ||
gbp: '0.008359151948', | ||
jpy: '1.600530478116', | ||
ltc: '0.000116295710314', | ||
rub: '0.978819669836', | ||
scp: '0.0623627615062762', | ||
sf: '0.000000745235', | ||
usd: '0.010571307522', | ||
}, | ||
}, | ||
timestamp: '2024-03-26T13:12:22.7348119Z', | ||
} | ||
} | ||
|
||
export async function mockApiSiaCentralExchangeRates({ page }: { page: Page }) { | ||
const json = getMockSiaCentralExchangeRatesResponse() | ||
await page.route( | ||
'https://api.siacentral.com/v2/market/exchange-rate?currencies=sc', | ||
async (route) => { | ||
await route.fulfill({ json }) | ||
} | ||
) | ||
return json | ||
} |
Oops, something went wrong.