diff --git a/src/services/Provider.ts b/src/services/Provider.ts index d7df1e5b..7c1da36e 100644 --- a/src/services/Provider.ts +++ b/src/services/Provider.ts @@ -2,6 +2,7 @@ import Web3 from 'web3' import fetch from 'cross-fetch' import { LoggerInstance } from '../utils' import { + Arweave, FileInfo, ComputeJob, ComputeOutput, @@ -11,6 +12,7 @@ import { ProviderInitialize, ProviderComputeInitializeResults, ServiceEndpoint, + UrlFile, UserCustomParameters } from '../@types' @@ -193,8 +195,8 @@ export class Provider { * @param {AbortSignal} signal abort signal * @return {Promise} urlDetails */ - public async checkFileUrl( - url: string, + public async getFileInfo( + file: UrlFile | Arweave, providerUri: string, signal?: AbortSignal ): Promise { @@ -203,7 +205,7 @@ export class Provider { providerUri, providerEndpoints ) - const args = { url, type: 'url' } + const args = file const files: FileInfo[] = [] const path = this.getEndpointURL(serviceEndpoints, 'fileinfo') ? this.getEndpointURL(serviceEndpoints, 'fileinfo').urlPath diff --git a/test/integration/Provider.test.ts b/test/integration/Provider.test.ts index 8c0ef1f0..c667f184 100644 --- a/test/integration/Provider.test.ts +++ b/test/integration/Provider.test.ts @@ -25,9 +25,24 @@ describe('Provider tests', async () => { assert(valid === true) }) - it('Alice checks fileinfo', async () => { - const fileinfo: FileInfo[] = await providerInstance.checkFileUrl( - 'https://dumps.wikimedia.org/enwiki/latest/enwiki-latest-abstract.xml.gz-rss.xml', + it('Alice checks URL fileinfo', async () => { + const fileinfo: FileInfo[] = await providerInstance.getFileInfo( + { + type: 'url', + url: 'https://dumps.wikimedia.org/enwiki/latest/enwiki-latest-abstract.xml.gz-rss.xml', + method: 'GET' + }, + config.providerUri + ) + assert(fileinfo[0].valid === true, 'Sent file is not valid') + }) + + it('Alice checks Arweave fileinfo', async () => { + const fileinfo: FileInfo[] = await providerInstance.getFileInfo( + { + type: 'arweave', + transactionId: 'a4qJoQZa1poIv5guEzkfgZYSAD0uYm7Vw4zm_tCswVQ' + }, config.providerUri ) assert(fileinfo[0].valid === true, 'Sent file is not valid')