mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
77 lines
2.9 KiB
TypeScript
77 lines
2.9 KiB
TypeScript
import {assert} from "chai"
|
|
import ConfigProvider from "../../src/ConfigProvider"
|
|
import MetaData from "../../src/ddo/MetaData"
|
|
import Account from "../../src/ocean/Account"
|
|
import Ocean from "../../src/ocean/Ocean"
|
|
import ServiceAgreementTemplate from "../../src/ocean/ServiceAgreements/ServiceAgreementTemplate"
|
|
import Access from "../../src/ocean/ServiceAgreements/Templates/Access"
|
|
import TemplateBase from "../../src/ocean/ServiceAgreements/Templates/TemplateBase"
|
|
import config from "../config"
|
|
import TestContractHandler from "../keeper/TestContractHandler"
|
|
import TestIdGenerator from "../TestIdGenerator"
|
|
|
|
let ocean: Ocean
|
|
let accounts: Account[]
|
|
|
|
describe("ServiceAgreementTemplate", () => {
|
|
|
|
before(async () => {
|
|
ConfigProvider.setConfig(config)
|
|
await TestContractHandler.prepareContracts()
|
|
ocean = await Ocean.getInstance(config)
|
|
accounts = await ocean.getAccounts()
|
|
})
|
|
|
|
describe("#register()", () => {
|
|
it("should setup an Access agreement template correctly", async () => {
|
|
|
|
const templateOwner = accounts[0]
|
|
const access: TemplateBase = new Access()
|
|
access.id = TestIdGenerator.generatePrefixedId()
|
|
const serviceAgreementTemplate: ServiceAgreementTemplate =
|
|
new ServiceAgreementTemplate(access)
|
|
assert(serviceAgreementTemplate)
|
|
|
|
const registered: boolean = await serviceAgreementTemplate.register(templateOwner.getId())
|
|
assert(registered)
|
|
|
|
assert(serviceAgreementTemplate.getId())
|
|
assert((await serviceAgreementTemplate.getOwner()).getId() === templateOwner.getId())
|
|
})
|
|
})
|
|
|
|
describe("#getConditions()", () => {
|
|
it("should setup an Access agreement template correctly", async () => {
|
|
|
|
const access: TemplateBase = new Access()
|
|
access.id = TestIdGenerator.generatePrefixedId()
|
|
const serviceAgreementTemplate: ServiceAgreementTemplate =
|
|
new ServiceAgreementTemplate(access)
|
|
assert(serviceAgreementTemplate)
|
|
|
|
const conds = await serviceAgreementTemplate.getConditions(new MetaData(),
|
|
TestIdGenerator.generatePrefixedId())
|
|
assert(conds)
|
|
})
|
|
})
|
|
|
|
describe("#getStatus()", () => {
|
|
it("should get the status of a newly deployed agreement template", async () => {
|
|
|
|
const publisherAccount = accounts[0]
|
|
const access: TemplateBase = new Access()
|
|
access.id = TestIdGenerator.generatePrefixedId()
|
|
const serviceAgreementTemplate: ServiceAgreementTemplate =
|
|
new ServiceAgreementTemplate(access)
|
|
assert(serviceAgreementTemplate)
|
|
|
|
const registered: boolean = await serviceAgreementTemplate.register(publisherAccount.getId())
|
|
assert(registered)
|
|
|
|
const templateStatus = await serviceAgreementTemplate.getStatus()
|
|
assert(templateStatus === true)
|
|
})
|
|
})
|
|
|
|
})
|