File: test.js

package info (click to toggle)
node-filename-regex 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 108 kB
  • sloc: javascript: 32; makefile: 2
file content (42 lines) | stat: -rw-r--r-- 1,240 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*!
 * filename-regex <https://github.com/regexps/filename-regex>
 *
 * Copyright (c) 2014-2015, Jon Schlinkert
 * Licensed under the MIT License
 */

'use strict';

var assert = require('assert');
var re = require('./');

function match(str) {
  var res = str.match(re())
  return res && res[0];
}

it('should match the last part of a file path:', function () {
  assert.equal(match(''), null);
  assert.equal(match('a'), 'a');
  assert.equal(match('a/b'), 'b');
  assert.equal(match('a/b/c/d'), 'd');
  assert.equal(match('a\\b\\c\\d'), 'd');
});

it('should match a filename with an extension:', function () {
  assert.equal(match('abc/xyz.md'), 'xyz.md');
  assert.equal(match('abc\\xyz.md'), 'xyz.md');
  assert.equal(match('b.md'), 'b.md');
});

it('should match a file name that is only a dotfile or file extension:', function () {
  assert.equal(match('.md'), '.md');
  assert.equal(match('.dotfile'), '.dotfile');
  assert.equal(match('abc\\.gitignore'), '.gitignore');
  assert.equal(match('abc/.gitignore'), '.gitignore');
});

it('should match the filename when there are dots in the dirname:', function () {
  assert.equal(match('a/.b/abc.foo.min.js'), 'abc.foo.min.js');
  assert.equal(match('a/b.c.d/foo.js'), 'foo.js');
});