import { expect, tap } from '@git.zone/tstest/tapbundle'; import * as smartdns from '../ts_client/index.js'; let testDnsClient: smartdns.Smartdns; tap.test('should create an instance of Dnsly', async () => { testDnsClient = new smartdns.Smartdns({}); expect(testDnsClient).toBeInstanceOf(smartdns.Smartdns); }); tap.test('should get an A DNS Record', async () => { return expect(await testDnsClient.getRecordsA('dnsly_a.bleu.de')).toEqual([ { name: 'dnsly_a.bleu.de', value: '127.0.0.1', dnsSecEnabled: false, type: 'A', }, ]); }); tap.test('should get an AAAA Record', async () => { return expect(await testDnsClient.getRecordsAAAA('dnsly_aaaa.bleu.de')).toEqual([ { name: 'dnsly_aaaa.bleu.de', value: '::1', dnsSecEnabled: false, type: 'AAAA', }, ]); }); tap.test('should get a txt record', async () => { return expect(await testDnsClient.getRecordsTxt('dnsly_txt.bleu.de')).toEqual([ { name: 'dnsly_txt.bleu.de', value: 'sometext_txt', type: 'TXT', dnsSecEnabled: false, }, ]); }); tap.test('should, get a mx record for a domain', async () => { const res = await testDnsClient.getRecords('bleu.de', 'MX'); console.log(res); }); tap.test('should check until DNS is available', async () => { return expect( await testDnsClient.checkUntilAvailable('dnsly_txt.bleu.de', 'TXT', 'sometext_txt') ).toBeTrue(); }); tap.test('should check until DNS is available an return false if it fails', async () => { return expect( await testDnsClient.checkUntilAvailable('dnsly_txt.bleu.de', 'TXT', 'sometext_txt2') ).toBeFalse(); }); tap.test('should check until DNS is available an return false if it fails', async () => { return expect( await testDnsClient.checkUntilAvailable('dnsly_txtNotThere.bleu.de', 'TXT', 'sometext_txt2') ).toBeFalse(); }); tap.test('should get name server for hostname', async () => { let result = await testDnsClient.getNameServers('bleu.de'); console.log(result); }); tap.test('should detect dns sec', async () => { const result = await testDnsClient.getRecordsA('lossless.com'); console.log(result[0]); expect(result[0].dnsSecEnabled).toBeTrue(); }); export default tap.start();