Ghost/ghost/admin/tests/unit/utils/ghost-paths-test.js

61 lines
1.9 KiB
JavaScript
Raw Normal View History

import ghostPaths from 'ghost-admin/utils/ghost-paths';
import {describe, it} from 'mocha';
import {expect} from 'chai';
2015-02-18 23:02:48 +03:00
describe('Unit: Util: ghost-paths', function () {
2015-02-18 23:02:48 +03:00
describe('join', function () {
let {join} = ghostPaths().url;
2015-02-18 23:02:48 +03:00
it('should join two or more paths, normalizing slashes', function () {
let path;
2015-02-18 23:02:48 +03:00
path = join('/one/', '/two/');
expect(path).to.equal('/one/two/');
path = join('/one', '/two/');
expect(path).to.equal('/one/two/');
path = join('/one/', 'two/');
expect(path).to.equal('/one/two/');
path = join('/one/', 'two/', '/three/');
expect(path).to.equal('/one/two/three/');
path = join('/one/', 'two', 'three/');
expect(path).to.equal('/one/two/three/');
});
it('should not change the slash at the beginning', function () {
let path;
2015-02-18 23:02:48 +03:00
path = join('one/');
expect(path).to.equal('one/');
path = join('one/', 'two');
expect(path).to.equal('one/two/');
path = join('/one/', 'two');
expect(path).to.equal('/one/two/');
path = join('one/', 'two', 'three');
expect(path).to.equal('one/two/three/');
path = join('/one/', 'two', 'three');
expect(path).to.equal('/one/two/three/');
});
it('should always return a slash at the end', function () {
let path;
2015-02-18 23:02:48 +03:00
path = join();
expect(path).to.equal('/');
path = join('');
expect(path).to.equal('/');
path = join('one');
expect(path).to.equal('one/');
path = join('one/');
expect(path).to.equal('one/');
path = join('one', 'two');
expect(path).to.equal('one/two/');
path = join('one', 'two/');
expect(path).to.equal('one/two/');
});
});
});