Skip to content

Commit

Permalink
Update Provider.checkFileUrl to allow non-URL file types (like Arweav…
Browse files Browse the repository at this point in the history
…e) (#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 7ca94b7.

* Add Arweave fileinfo unit test

* Rename `checkFileUrl` to `getFileInfo`

* Fix lint error
  • Loading branch information
MantisClone committed Oct 19, 2022
1 parent f91a42a commit 6efae8e
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 6 deletions.
8 changes: 5 additions & 3 deletions src/services/Provider.ts
Expand Up @@ -2,6 +2,7 @@ import Web3 from 'web3'
import fetch from 'cross-fetch'
import { LoggerInstance } from '../utils'
import {
Arweave,
FileInfo,
ComputeJob,
ComputeOutput,
Expand All @@ -11,6 +12,7 @@ import {
ProviderInitialize,
ProviderComputeInitializeResults,
ServiceEndpoint,
UrlFile,
UserCustomParameters
} from '../@types'

Expand Down Expand Up @@ -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[]> {
Expand All @@ -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
Expand Down
21 changes: 18 additions & 3 deletions test/integration/Provider.test.ts
Expand Up @@ -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')
Expand Down

0 comments on commit 6efae8e

Please sign in to comment.