/* This file is part of web3.js. web3.js is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. web3.js is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with web3.js. If not, see . */ /** * @file bzz-tests.ts * @author Josh Stevens * @date 2018 */ import { Bzz } from 'web3-bzz'; // $ExpectType Bzz const bzz_empty = new Bzz(); // $ExpectType Bzz const bzz = new Bzz('http://swarm-gateways.net'); // $ExpectType any Bzz.givenProvider; // $ExpectType boolean bzz.setProvider('test.com'); // $ExpectType any bzz.currentProvider; // $ExpectType any bzz.givenProvider; // $ExpectType boolean bzz.setProvider('https://localhost:2100'); // $ExpectType Promise bzz.upload('test file'); const dir = { '/foo.txt': { type: 'text/plain', data: 'sample file' }, '/bar.txt': { type: 'text/plain', data: 'another file' } }; // $ExpectType Promise bzz.upload(dir); // $ExpectType Promise bzz.upload({ path: '/path/to/thing', kind: 'directory', defaultFile: '/index.html' }); // ExpectType Promise; bzz.download('hash'); // ExpectType Promise; bzz.download('hash', 'path'); // $ExpectType Promise bzz.pick.file(); // $ExpectType Promise bzz.pick.directory(); // $ExpectType Promise bzz.pick.data();