smartwhois/test/test.ts

44 lines
1.6 KiB
TypeScript
Raw Permalink Normal View History

2023-10-06 09:10:13 +00:00
import { expect, expectAsync, tap } from '@push.rocks/tapbundle';
2023-04-03 14:48:14 +00:00
import * as smartwhois from '../ts/index.js';
let testSmartWhois: smartwhois.SmartWhois;
tap.test('should create a valid instance of SmartWhois', async () => {
testSmartWhois = new smartwhois.SmartWhois();
expect(testSmartWhois).toBeInstanceOf(smartwhois.SmartWhois);
2023-04-18 18:40:39 +00:00
});
tap.test('should get a parsed url result for whois', async () => {
2023-10-06 09:10:13 +00:00
const domainDelegation = await testSmartWhois.getDomainDelegation('https://coffee.link/understanding-gen-z/');
console.log(domainDelegation);
2023-04-19 19:36:44 +00:00
const parsedUrlResult2 = await testSmartWhois.getDomainDelegation('task.vc');
2023-04-19 16:57:12 +00:00
console.log(parsedUrlResult2);
2023-04-18 18:40:39 +00:00
});
2023-04-03 14:48:14 +00:00
2023-04-19 12:52:37 +00:00
tap.test('should get additional data', async () => {
const parsedUrlResult = await testSmartWhois.getAdditionalWhoisDataForDomain('https://coffee.link/understanding-gen-z/');
console.log(parsedUrlResult);
});
2023-04-03 14:48:14 +00:00
tap.test('should get whois info for domain', async () => {
const whoisInfo = await testSmartWhois.getWhoisForDomain('task.vc');
console.log(whoisInfo);
});
2023-04-19 16:49:06 +00:00
tap.test('should get whois info for domain', async () => {
const whoisInfo = await testSmartWhois.getWhoisForDomain('https://lossless.com');
console.log(whoisInfo);
});
2023-04-03 14:48:14 +00:00
2023-04-18 18:40:39 +00:00
tap.test('should get whois info for domain', async () => {
const whoisInfo = await testSmartWhois.getWhoisForDomain('https://coffee.link/understanding-gen-z/');
console.log(whoisInfo);
});
2023-04-03 15:50:55 +00:00
tap.test('should check for a valid tld', async () => {
const comIsValid = await testSmartWhois.isValidTld('.com');
console.log(comIsValid);
expect(comIsValid).toBeTrue();
})
2023-04-03 14:48:14 +00:00
tap.start();