mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
adapted unit tets to the code
This commit is contained in:
parent
c2f77295ce
commit
1724412dd7
@ -26,7 +26,7 @@ describe("DIDRegistry", () => {
|
|||||||
|
|
||||||
it("should register an attribute in a new did", async () => {
|
it("should register an attribute in a new did", async () => {
|
||||||
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
||||||
const did = IdGenerator.generateId()
|
const did = IdGenerator.generatePrefixedId()
|
||||||
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
||||||
const data = "my nice provider, is nice"
|
const data = "my nice provider, is nice"
|
||||||
const receipt = await didRegistry.registerAttribute(did, ValueType.DID, providerKey,
|
const receipt = await didRegistry.registerAttribute(did, ValueType.DID, providerKey,
|
||||||
@ -37,7 +37,7 @@ describe("DIDRegistry", () => {
|
|||||||
|
|
||||||
it("should register another attribute in the same did", async () => {
|
it("should register another attribute in the same did", async () => {
|
||||||
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
||||||
const did = IdGenerator.generateId()
|
const did = IdGenerator.generatePrefixedId()
|
||||||
{
|
{
|
||||||
// register the first attribute
|
// register the first attribute
|
||||||
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
||||||
@ -62,7 +62,7 @@ describe("DIDRegistry", () => {
|
|||||||
|
|
||||||
it("should get the owner of a did properly", async () => {
|
it("should get the owner of a did properly", async () => {
|
||||||
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
||||||
const did = IdGenerator.generateId()
|
const did = IdGenerator.generatePrefixedId()
|
||||||
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
||||||
const data = "my nice provider, is nice"
|
const data = "my nice provider, is nice"
|
||||||
await didRegistry.registerAttribute(did, ValueType.DID, providerKey,
|
await didRegistry.registerAttribute(did, ValueType.DID, providerKey,
|
||||||
@ -74,7 +74,7 @@ describe("DIDRegistry", () => {
|
|||||||
})
|
})
|
||||||
|
|
||||||
it("should get 0x00.. for a not registered did", async () => {
|
it("should get 0x00.. for a not registered did", async () => {
|
||||||
const owner = await didRegistry.getOwner("1234")
|
const owner = await didRegistry.getOwner("0x1234")
|
||||||
assert(owner === "0x0000000000000000000000000000000000000000")
|
assert(owner === "0x0000000000000000000000000000000000000000")
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -84,7 +84,7 @@ describe("DIDRegistry", () => {
|
|||||||
|
|
||||||
it("should the block number of the last update of the did attribute", async () => {
|
it("should the block number of the last update of the did attribute", async () => {
|
||||||
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
const ownerAccount: Account = (await ocean.getAccounts())[0]
|
||||||
const did = IdGenerator.generateId()
|
const did = IdGenerator.generatePrefixedId()
|
||||||
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
const providerKey = Web3Provider.getWeb3().utils.fromAscii("provider")
|
||||||
const data = "my nice provider, is nice"
|
const data = "my nice provider, is nice"
|
||||||
await didRegistry.registerAttribute(did, ValueType.DID, providerKey,
|
await didRegistry.registerAttribute(did, ValueType.DID, providerKey,
|
||||||
|
@ -23,7 +23,7 @@ let consumerAccount: Account
|
|||||||
let accessService: Service
|
let accessService: Service
|
||||||
let metaDataService: Service
|
let metaDataService: Service
|
||||||
|
|
||||||
const assetId: string = IdGenerator.generateId()
|
const assetId: string = IdGenerator.generatePrefixedId()
|
||||||
|
|
||||||
describe("ServiceAgreement", () => {
|
describe("ServiceAgreement", () => {
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user