|
|
import { forEach } from 'lodash'; |
|
|
import { |
|
|
getFixedDomainSearch, |
|
|
getDomainSuggestionSearch, |
|
|
getDomainProductSlug, |
|
|
} from 'calypso/lib/domains'; |
|
|
|
|
|
describe( 'index', () => { |
|
|
describe( '#getFixedDomainSearch', () => { |
|
|
test( 'should return an empty string when searching for generic URL prefixes', () => { |
|
|
const searches = [ 'http://', 'https://' ]; |
|
|
|
|
|
forEach( searches, ( search ) => { |
|
|
expect( getFixedDomainSearch( search ) ).toEqual( '' ); |
|
|
} ); |
|
|
} ); |
|
|
|
|
|
test( 'should strip generic URL prefixes from a valid search string', () => { |
|
|
const searches = [ |
|
|
'http://example.com', |
|
|
'https://example.com', |
|
|
'www.example.com', |
|
|
'www1.example.com', |
|
|
'http://www.example.com', |
|
|
'https://www.example.com', |
|
|
]; |
|
|
|
|
|
forEach( searches, ( search ) => { |
|
|
expect( getFixedDomainSearch( search ) ).toEqual( 'example.com' ); |
|
|
} ); |
|
|
} ); |
|
|
|
|
|
test( 'should allow domain names beginning with www or http(s)', () => { |
|
|
const searches = [ 'wwwexample.com', 'httpexample.com', 'httpsexample.com' ]; |
|
|
|
|
|
forEach( searches, ( search ) => { |
|
|
expect( getFixedDomainSearch( search ) ).toEqual( search ); |
|
|
} ); |
|
|
} ); |
|
|
|
|
|
test( 'should allow accent characters on domain search', () => { |
|
|
const searches = [ |
|
|
{ |
|
|
search: 'alimentaçãosaudável.com.br', |
|
|
expected: 'alimentaçãosaudável.com.br', |
|
|
}, |
|
|
{ |
|
|
search: 'meudomínioação.com', |
|
|
expected: 'meudomínioação.com', |
|
|
}, |
|
|
{ |
|
|
|
|
|
search: 'meudomínioação&*ê.com', |
|
|
expected: 'meudomínioaçãoê.com', |
|
|
}, |
|
|
]; |
|
|
|
|
|
forEach( searches, ( search ) => { |
|
|
expect( getFixedDomainSearch( search.search ) ).toEqual( search.expected ); |
|
|
} ); |
|
|
} ); |
|
|
} ); |
|
|
|
|
|
describe( '#getDomainSuggestionSearch', () => { |
|
|
test( 'should return an empty string when searching for www, http or https', () => { |
|
|
const searches = [ 'www', 'http', 'https' ]; |
|
|
|
|
|
forEach( searches, ( search ) => { |
|
|
expect( getDomainSuggestionSearch( search ) ).toEqual( '' ); |
|
|
} ); |
|
|
} ); |
|
|
|
|
|
test( 'should return an empty string when searching for a string shorter than the minimum length', () => { |
|
|
const minLength = 3; |
|
|
const search = 'zz'; |
|
|
expect( getDomainSuggestionSearch( search, minLength ) ).toEqual( '' ); |
|
|
} ); |
|
|
|
|
|
test( 'should return the original search string if it is long enough and is not one of the ignored strings', () => { |
|
|
const search = 'hippos'; |
|
|
expect( getDomainSuggestionSearch( search ) ).toEqual( search ); |
|
|
} ); |
|
|
} ); |
|
|
|
|
|
describe( '#getDomainProductSlug', () => { |
|
|
test( 'should return dotorg_domain for a .org domain', () => { |
|
|
expect( getDomainProductSlug( 'test-domain.org' ) ).toEqual( 'dotorg_domain' ); |
|
|
} ); |
|
|
|
|
|
test( 'should return dotnet_domain for a .net domain', () => { |
|
|
expect( getDomainProductSlug( 'test-domain.net' ) ).toEqual( 'dotnet_domain' ); |
|
|
} ); |
|
|
|
|
|
test( 'should return domain_reg for a .com domain', () => { |
|
|
expect( getDomainProductSlug( 'test-domain.com' ) ).toEqual( 'domain_reg' ); |
|
|
} ); |
|
|
} ); |
|
|
} ); |
|
|
|