1
0
mirror of https://github.com/oceanprotocol/ocean.js.git synced 2024-11-26 20:39:05 +01:00

Update Provider.checkFileUrl to allow non-URL file types (like Arweave) (#1627)

* Update Provider.checkFileUrl to allow non-URL file types

* Reduce scope to only URLs and Arweave.

* Remove parentheses to make linter happy

* Update Provider tests to use UrlFile argument

* Fix lint errors

* Fix lint error

* [REVERT THIS] comment coverage upload

  * CC_TEST_REPORTER_ID secret not available in PR workflows from
    external contributors.

* Revert "[REVERT THIS] comment coverage upload"

This reverts commit 7ca94b7e71ce5d53fa0c7b35bdff85e91b6db059.

* Add Arweave fileinfo unit test

* Rename `checkFileUrl` to `getFileInfo`

* Fix lint error
This commit is contained in:
MantisClone 2022-10-19 08:24:20 -04:00 committed by GitHub
parent f91a42aa60
commit 6efae8ebbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 6 deletions

View File

@ -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<FileInfo[]>} urlDetails
*/
public async checkFileUrl(
url: string,
public async getFileInfo(
file: UrlFile | Arweave,
providerUri: string,
signal?: AbortSignal
): Promise<FileInfo[]> {
@ -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

View File

@ -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')