mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
61 lines
2.2 KiB
TypeScript
61 lines
2.2 KiB
TypeScript
import {assert} from "chai"
|
|
import ConfigProvider from "../../src/ConfigProvider"
|
|
import ContractHandler from "../../src/keeper/ContractHandler"
|
|
import Account from "../../src/ocean/Account"
|
|
import Ocean from "../../src/ocean/Ocean"
|
|
import ServiceAgreementTemplate from "../../src/ocean/ServiceAgreementTemplate"
|
|
import config from "../config"
|
|
|
|
let ocean: Ocean
|
|
let accounts: Account[]
|
|
const methods: string[] = [
|
|
"PaymentConditions.lockPayment",
|
|
"AccessConditions.grantAccess",
|
|
"PaymentConditions.releasePayment",
|
|
"PaymentConditions.refundPayment",
|
|
]
|
|
// tslint:disable
|
|
const dependencyMatrix = [0, 1, 4, 1 | 2 ** 4 | 2 ** 5] // dependency bit | timeout bit
|
|
|
|
describe("ServiceAgreementTemplate", () => {
|
|
|
|
before(async () => {
|
|
ConfigProvider.setConfig(config)
|
|
await ContractHandler.deployContracts()
|
|
ocean = await Ocean.getInstance(config)
|
|
accounts = await ocean.getAccounts()
|
|
})
|
|
|
|
describe("#registerServiceAgreementsTemplate()", () => {
|
|
it("should setup an agreement template", async () => {
|
|
|
|
const templateOwner = accounts[0]
|
|
const resourceName = "consume"
|
|
const serviceAgreementTemplate: ServiceAgreementTemplate =
|
|
await ServiceAgreementTemplate.registerServiceAgreementsTemplate(resourceName, methods,
|
|
dependencyMatrix, templateOwner)
|
|
|
|
assert(serviceAgreementTemplate)
|
|
assert(serviceAgreementTemplate.getId())
|
|
assert(serviceAgreementTemplate.getOwner().getId() === templateOwner.getId())
|
|
})
|
|
})
|
|
|
|
describe("#getStatus()", () => {
|
|
it("should get the status of a newly deployed agreement template", async () => {
|
|
|
|
const publisherAccount = accounts[0]
|
|
const resourceName = "consume"
|
|
|
|
const serviceAgreementTemplate: ServiceAgreementTemplate =
|
|
await ServiceAgreementTemplate.registerServiceAgreementsTemplate(resourceName, methods,
|
|
dependencyMatrix, publisherAccount)
|
|
assert(serviceAgreementTemplate)
|
|
|
|
const templateStatus = await serviceAgreementTemplate.getStatus()
|
|
assert(templateStatus === true)
|
|
})
|
|
})
|
|
|
|
})
|