aboutsummaryrefslogtreecommitdiff
path: root/test/shared/utils/re.test.js
blob: d12ceb7f419a805678a64855de525e0116b2fd20 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import * as re from 'shared/utils/re';

describe("re util", () => {
  it('matches by pattern', () => {
    let regex = re.fromWildcard('*.example.com/*');
    expect('foo.example.com/bar').to.match(regex);
    expect('foo.example.com').not.to.match(regex);
    expect('example.com/bar').not.to.match(regex);

    regex = re.fromWildcard('example.com/*')
    expect('example.com/foo').to.match(regex);
    expect('example.com/').to.match(regex);

    regex = re.fromWildcard('example.com/*bar')
    expect('example.com/foobar').to.match(regex);
    expect('example.com/bar').to.match(regex);
    expect('example.com/foobarfoo').not.to.match(regex);
  })
});