tests.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  1. var urljoin = require('../lib/url-join');
  2. var assert = require('assert');
  3. describe('url join', function () {
  4. it('should work for simple case', function () {
  5. urljoin('http://www.google.com/', 'foo/bar', '?test=123')
  6. .should.eql('http://www.google.com/foo/bar?test=123');
  7. });
  8. it('should work for simple case with new syntax', function () {
  9. urljoin(['http://www.google.com/', 'foo/bar', '?test=123'])
  10. .should.eql('http://www.google.com/foo/bar?test=123');
  11. });
  12. it('should work for hashbang urls', function () {
  13. urljoin(['http://www.google.com', '#!', 'foo/bar', '?test=123'])
  14. .should.eql('http://www.google.com/#!/foo/bar?test=123');
  15. });
  16. it('should be able to join protocol', function () {
  17. urljoin('http:', 'www.google.com/', 'foo/bar', '?test=123')
  18. .should.eql('http://www.google.com/foo/bar?test=123');
  19. });
  20. it('should be able to join protocol with slashes', function () {
  21. urljoin('http://', 'www.google.com/', 'foo/bar', '?test=123')
  22. .should.eql('http://www.google.com/foo/bar?test=123');
  23. });
  24. it('should remove extra slashes', function () {
  25. urljoin('http:', 'www.google.com///', 'foo/bar', '?test=123')
  26. .should.eql('http://www.google.com/foo/bar?test=123');
  27. });
  28. it('should not remove extra slashes in an encoded URL', function () {
  29. urljoin('http:', 'www.google.com///', 'foo/bar', '?url=http%3A//Ftest.com')
  30. .should.eql('http://www.google.com/foo/bar?url=http%3A//Ftest.com');
  31. urljoin('http://a.com/23d04b3/', '/b/c.html')
  32. .should.eql('http://a.com/23d04b3/b/c.html')
  33. .should.not.eql('http://a.com/23d04b3//b/c.html');
  34. });
  35. it('should support anchors in urls', function () {
  36. urljoin('http:', 'www.google.com///', 'foo/bar', '?test=123', '#faaaaa')
  37. .should.eql('http://www.google.com/foo/bar?test=123#faaaaa');
  38. });
  39. it('should support protocol-relative urls', function () {
  40. urljoin('//www.google.com', 'foo/bar', '?test=123')
  41. .should.eql('//www.google.com/foo/bar?test=123')
  42. });
  43. it('should support file protocol urls', function () {
  44. urljoin('file:/', 'android_asset', 'foo/bar')
  45. .should.eql('file://android_asset/foo/bar')
  46. urljoin('file:', '/android_asset', 'foo/bar')
  47. .should.eql('file://android_asset/foo/bar')
  48. });
  49. it('should support absolute file protocol urls', function () {
  50. urljoin('file:', '///android_asset', 'foo/bar')
  51. .should.eql('file:///android_asset/foo/bar')
  52. urljoin('file:///', 'android_asset', 'foo/bar')
  53. .should.eql('file:///android_asset/foo/bar')
  54. urljoin('file:///', '//android_asset', 'foo/bar')
  55. .should.eql('file:///android_asset/foo/bar')
  56. urljoin('file:///android_asset', 'foo/bar')
  57. .should.eql('file:///android_asset/foo/bar')
  58. });
  59. it('should merge multiple query params properly', function () {
  60. urljoin('http:', 'www.google.com///', 'foo/bar', '?test=123', '?key=456')
  61. .should.eql('http://www.google.com/foo/bar?test=123&key=456');
  62. urljoin('http:', 'www.google.com///', 'foo/bar', '?test=123', '?boom=value', '&key=456')
  63. .should.eql('http://www.google.com/foo/bar?test=123&boom=value&key=456');
  64. urljoin('http://example.org/x', '?a=1', '?b=2', '?c=3', '?d=4')
  65. .should.eql('http://example.org/x?a=1&b=2&c=3&d=4');
  66. });
  67. it('should merge slashes in paths correctly', function () {
  68. urljoin('http://example.org', 'a//', 'b//', 'A//', 'B//')
  69. .should.eql('http://example.org/a/b/A/B/');
  70. });
  71. it('should merge colons in paths correctly', function () {
  72. urljoin('http://example.org/', ':foo:', 'bar')
  73. .should.eql('http://example.org/:foo:/bar');
  74. });
  75. it('should merge just a simple path without URL correctly', function() {
  76. urljoin('/', 'test')
  77. .should.eql('/test');
  78. });
  79. it('should fail with segments that are not string', function() {
  80. assert.throws(() => urljoin(true),
  81. /Url must be a string. Received true/);
  82. assert.throws(() => urljoin('http://blabla.com/', 1),
  83. /Url must be a string. Received 1/);
  84. assert.throws(() => urljoin('http://blabla.com/', undefined, 'test'),
  85. /Url must be a string. Received undefined/);
  86. assert.throws(() => urljoin('http://blabla.com/', null, 'test'),
  87. /Url must be a string. Received null/);
  88. assert.throws(() => urljoin('http://blabla.com/', { foo: 123 }, 'test'),
  89. /Url must be a string. Received \[object Object\]/);
  90. });
  91. it('should merge a path with colon properly', function(){
  92. urljoin('/users/:userId', '/cars/:carId')
  93. .should.eql('/users/:userId/cars/:carId');
  94. });
  95. it('should merge slashes in protocol correctly', function () {
  96. urljoin('http://example.org', 'a')
  97. .should.eql('http://example.org/a');
  98. urljoin('http:', '//example.org', 'a')
  99. .should.eql('http://example.org/a');
  100. urljoin('http:///example.org', 'a')
  101. .should.eql('http://example.org/a');
  102. urljoin('file:///example.org', 'a')
  103. .should.eql('file:///example.org/a');
  104. urljoin('file:example.org', 'a')
  105. .should.eql('file://example.org/a');
  106. urljoin('file:/', 'example.org', 'a')
  107. .should.eql('file://example.org/a');
  108. urljoin('file:', '/example.org', 'a')
  109. .should.eql('file://example.org/a');
  110. urljoin('file:', '//example.org', 'a')
  111. .should.eql('file://example.org/a');
  112. });
  113. it('should skip empty strings', function() {
  114. urljoin('http://foobar.com', '', 'test')
  115. .should.eql('http://foobar.com/test');
  116. urljoin('', 'http://foobar.com', '', 'test')
  117. .should.eql('http://foobar.com/test');
  118. });
  119. it('should return an empty string if no arguments are supplied', function() {
  120. urljoin().should.eql('');
  121. });
  122. });