ruby-dns-mock

DNS mock server written on 💎 Ruby. Mimic any DNS records for your test environment with fake DNS server.

MIT License

Downloads
83.7K
Stars
65
Committers
1

Bot releases are visible (Hide)

ruby-dns-mock - v1.0.0: Feature/Configurable record not found behaviour

Published by bestwebua over 3 years ago

Added configurable strategy for record not found case. By default it won't raise an exception when DNS record not found in mocked records dictionary:

DnsMock.start_server(port: 5300)
dig @localhost -p 5300 A example.com
; <<>> DiG 9.10.6 <<>> @localhost -p 5300 A example.com
;; Got answer:
;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 38632
;; flags: rd; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 1
;; WARNING: recursion requested but not available

;; OPT PSEUDOSECTION:
; EDNS: version: 0, flags:; udp: 4096
;; QUESTION SECTION:
;example.com.			IN	A

;; Query time: 0 msec
;; SERVER: 127.0.0.1#5300(127.0.0.1)
;; WHEN: Fri Jan 29 08:21:30 EET 2021
;; MSG SIZE  rcvd: 40

If you want raise an exception when record not found, just start DnsMock with exception_if_not_found: true option:

DnsMock.start_server(exception_if_not_found: true)
  1. Updated DnsMock.start_server
  2. Updated DnsMock::Server
  3. Updated DnsMock::Response::Message
  4. Updated DnsMock::Response::Answer
  5. Updated readme, changelog
  6. Updated gem version to 1.0.0
ruby-dns-mock - v0.2.1: Bugfix/RDNS lookup representation

Published by bestwebua over 3 years ago

Fixed RDNS lookup representatin for IP address in PTR record feature.

  1. Updated DnsMock::Server::RecordsDictionaryBuilder
  2. Updated gem version to 0.2.1
ruby-dns-mock - v0.2.0: Feature/PTR record support

Published by bestwebua over 3 years ago

Added ability to mock PTR records. Please note, you can define host address without RDNS lookup prefix (.in-addr.arpa). DnsMock will do it for you.

records = {
  '1.1.1.1' => {
    ptr: %w[domain_1.com domain_2.com]
  }
}

DnsMock.start_server(records: records)
dig @localhost -p 5300 -x 1.1.1.1
; <<>> DiG 9.10.6 <<>> @localhost -p 5300 -x 1.1.1.1
; (2 servers found)

;; ANSWER SECTION:
1.1.1.1.in-addr.arpa.	1	IN	PTR	domain_1.com.
1.1.1.1.in-addr.arpa.	1	IN	PTR	domain_2.com.

;; Query time: 0 msec
;; SERVER: 127.0.0.1#5300(127.0.0.1)
;; WHEN: Mon Jan 25 19:58:39 EET 2021
;; MSG SIZE  rcvd: 98
  1. Added PTR record support
  2. Updated gem version to 0.2.0
ruby-dns-mock - v0.1.0: First release

Published by bestwebua over 3 years ago

Ruby DnsMock first release 🚀 Thanks @le0pard for idea & support.

Package Rankings
Top 6.72% on Proxy.golang.org
Top 10.14% on Rubygems.org
Badges
Extracted from project README
Maintainability Test Coverage CircleCI Gem Version Downloads In Awesome Ruby GitHub Contributor Covenant