mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 23:06:57 +08:00
65 lines
1.5 KiB
Ruby
65 lines
1.5 KiB
Ruby
# encoding: utf-8
|
|
|
|
require 'spec_helper'
|
|
require 'slug'
|
|
|
|
describe Slug do
|
|
|
|
it 'replaces spaces with hyphens' do
|
|
Slug.for("hello world").should == 'hello-world'
|
|
end
|
|
|
|
it 'changes accented characters' do
|
|
Slug.for('àllo').should == 'allo'
|
|
end
|
|
|
|
it 'replaces symbols' do
|
|
Slug.for('evil#trout').should == 'evil-trout'
|
|
end
|
|
|
|
it 'handles a.b.c properly' do
|
|
Slug.for("a.b.c").should == "a-b-c"
|
|
end
|
|
|
|
it 'handles double dots right' do
|
|
Slug.for("a....b.....c").should == "a-b-c"
|
|
end
|
|
|
|
it 'strips trailing punctuation' do
|
|
Slug.for("hello...").should == "hello"
|
|
end
|
|
|
|
it 'strips leading punctuation' do
|
|
Slug.for("...hello").should == "hello"
|
|
end
|
|
|
|
it 'handles our initial transliteration' do
|
|
from = "àáäâčďèéëěêìíïîľĺňòóöôŕřšťůùúüûýžñç"
|
|
to = "aaaacdeeeeeiiiillnoooorrstuuuuuyznc"
|
|
Slug.for(from).should == to
|
|
end
|
|
|
|
it 'replaces underscores' do
|
|
Slug.for("o_o_o").should == "o-o-o"
|
|
end
|
|
|
|
it "doesn't generate slugs that are just numbers" do
|
|
Slug.for('123').should be_blank
|
|
end
|
|
|
|
it "doesn't generate slugs that are just numbers" do
|
|
Slug.for('2').should be_blank
|
|
end
|
|
|
|
it "doesn't keep single quotes within word" do
|
|
Slug.for("Jeff hate's this").should == "jeff-hates-this"
|
|
end
|
|
|
|
it "translate the chineses" do
|
|
SiteSetting.default_locale = 'zh_CN'
|
|
Slug.for("习近平:中企承建港口电站等助斯里兰卡发展").should == "xi-jin-ping-zhong-qi-cheng-jian-gang-kou-dian-zhan-deng-zhu-si-li-lan-qia-fa-zhan"
|
|
end
|
|
|
|
end
|
|
|