package skate import "testing" func TestSanitizeURL(t *testing.T) { var cases = []struct { in string out string }{ {"", ""}, {"http://abc.com", "http://abc.com"}, {"http://!!abc.com", "http://abc.com"}, {`http://"www.phaelos.com/oubre.html`, `http://www.phaelos.com/oubre.html`}, {`http://!www.rkm=journal.de/archives/13383`, `http://www.rkm=journal.de/archives/13383`}, {`http:///en.m.wikipedia.org/ChenLong`, `http://en.m.wikipedia.org/ChenLong`}, {`http://10.1111/joim.12348`, `https://doi.org/10.1111/joim.12348`}, {`http://10.1113/jphysiol.2002.026047`, `https://doi.org/10.1113/jphysiol.2002.026047`}, {`http://10.30.3.16/moodle/course/view.php?id=25`, `http://10.30.3.16/moodle/course/view.php?id=25`}, {`http://10.3266/RevEspEndocrinolPediatr.pre2015.Nov.330`, `https://doi.org/10.3266/RevEspEndocrinolPediatr.pre2015.Nov.330`}, {`http://120.107.180.177/1832/9901/099-2-07p.pdf.Accessed`, `http://120.107.180.177/1832/9901/099-2-07p.pdf`}, {`http://120cartas.ig.com.br/wp/maio-de-2008-um-aniversario-de-120-anos/.Acessoem:set`, `http://120cartas.ig.com.br/wp/maio-de-2008-um-aniversario-de-120-anos/`}, {`http://122.53.86.125/NNS/8thNNS.pdf.Accessed`, `http://122.53.86.125/NNS/8thNNS.pdf`}, {`http://122.53.86.125/facts_figures2011.pdf.Accessedon`, `http://122.53.86.125/facts_figures2011.pdf`}, {`http://129.3.20.41/eps/fin/papers/0507/0507016.pdf.diaksespadatanggal23Januari`, `http://129.3.20.41/eps/fin/papers/0507/0507016.pdf`}, {`http://129.3.20.41/eps/hew/papers/0512/0512001.pdfAccessed1`, `http://129.3.20.41/eps/hew/papers/0512/0512001.pdf`}, {`http://140.120.197.173/Ecology/Download/Timing-MSChart.zipJournalofInsectScience`, `http://140.120.197.173/Ecology/Download/Timing-MSChart.zip`}, {`141.213.232.243/bitstream/handle/2027.42/86336/apterc_1.pdf?sequence=1`, `141.213.232.243/bitstream/handle/2027.42/86336/apterc_1.pdf?sequence=1`}, {`http://141.232.10.32/pm/recover/recover_docs/perf_measures/062812_rec_pm_scs_salinity_flbay.pdfRECOVER`, `http://141.232.10.32/pm/recover/recover_docs/perf_measures/062812_rec_pm_scs_salinity_flbay.pdf`}, {`http://2010.census.gov/news/releases/operations/cb11-cn125.html.lastaccessed4`, `http://2010.census.gov/news/releases/operations/cb11-cn125.html`}, {`http://2014hit.blogspot.com.tr/2014/12/george-gerbnerin-tv-arastrmas-ve-ekme.htmladresindenedinilmiştir`, `http://2014hit.blogspot.com.tr/2014/12/george-gerbnerin-tv-arastrmas-ve-ekme.html`}, {`http://2015.ses.org.tr/wp-ontent/uploads/toplumsalcinsiyetrolleri.pdfsayfasındanulaşıl-mıştır`, `http://2015.ses.org.tr/wp-ontent/uploads/toplumsalcinsiyetrolleri.pdf`}, {`http://2015.veneziabiennale-japanpavilion.jp/en/Consultadael20deoctubrealas14`, `http://2015.veneziabiennale-japanpavilion.jp/en/`}, {`http://-annalsofneurosciences.org/journal/index.php/annal/article/view/43/67`, `http://annalsofneurosciences.org/journal/index.php/annal/article/view/43/67`}, {`http://-www.gifted.uconn.edu/Siegle/Dissertations/Eric%20Mann.pdf.Diunduh15`, `http://www.gifted.uconn.edu/Siegle/Dissertations/Eric%20Mann.pdf`}, {`http://-www.suparlan.com/pages/posts/.Diakses15Pebruari`, `http://www.suparlan.com/pages/posts/`}, {`http://...books.google.com/books?isbn=0873552601`, `http://books.google.com/books?isbn=0873552601`}, {`http://.R-project.org`, `http://R-project.org`}, {`http://.amazona.com/academia.edu.documents//autogestion.pdfRecibido:24demayode2017`, `http://amazona.com/academia.edu.documents//autogestion.pdf`}, {`http://10.1007/s00779-012-0615-1`, `https://doi.org/10.1007/s00779-012-0615-1`}, {`http://20.132.48.254/PDFS/ED495503.pdf.Accessedat`, `http://20.132.48.254/PDFS/ED495503.pdf`}, {`http://82.198.195.82/presse/mitteilungen/2007/Stellungnahme_dsn_BDAG_Internet_20071219.pdf,abgerufenam19`, `http://82.198.195.82/presse/mitteilungen/2007/Stellungnahme_dsn_BDAG_Internet_20071219.pdf`}, {`http://CRAN.R-project.org/package=RTextTools.Zugegriffen:6Juni`, `http://CRAN.R-project.org/package=RTextTools`}, } for _, c := range cases { out := SanitizeURL(c.in) if out != c.out { t.Fatalf("got %v, want %v", out, c.out) } } }