defmodule AutoLinkerTest do use ExUnit.Case doctest AutoLinker test "phone number" do assert AutoLinker.link(", work (555) 555-5555", phone: true) == ~s{, work (555) 555-5555} end test "default link" do assert AutoLinker.link("google.com") == "google.com" end test "markdown" do assert AutoLinker.link("[google.com](http://google.com)", markdown: true) == "google.com" end test "does on link existing links" do assert AutoLinker.link("google.com") == "google.com" end test "phone number and markdown link" do assert AutoLinker.link("888 888-8888 [ab](a.com)", phone: true, markdown: true) == "888 888-8888" <> " ab" end describe "TLDs" do test "parse with scheme" do text = "https://google.com" expected = "google.com" assert AutoLinker.link(text, scheme: true) == expected end test "only existing TLDs with scheme" do text = "this url https://google.foobar.blah11blah/ has invalid TLD" expected = "this url https://google.foobar.blah11blah/ has invalid TLD" assert AutoLinker.link(text, scheme: true) == expected text = "this url https://google.foobar.com/ has valid TLD" expected = "this url google.foobar.com/ has valid TLD" assert AutoLinker.link(text, scheme: true) == expected end test "only existing TLDs without scheme" do text = "this url google.foobar.blah11blah/ has invalid TLD" expected = "this url google.foobar.blah11blah/ has invalid TLD" assert AutoLinker.link(text, scheme: false) == expected text = "this url google.foobar.com/ has valid TLD" expected = "this url google.foobar.com/ has valid TLD" assert AutoLinker.link(text, scheme: false) == expected end test "only existing TLDs with and without scheme" do text = "this url http://google.foobar.com/ has valid TLD" expected = "this url google.foobar.com/ has valid TLD" assert AutoLinker.link(text, scheme: true) == expected text = "this url google.foobar.com/ has valid TLD" expected = "this url google.foobar.com/ has valid TLD" assert AutoLinker.link(text, scheme: true) == expected end end end