-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
require 'spec_helper' | ||
|
||
RSpec.describe "Alias", :type => :aruba do | ||
include_context "messages" | ||
include_context "texmf" | ||
|
||
let(:texdoc_cnf) { texmf_home / "texdoc/texdoc.cnf" } | ||
|
||
context "is set in texdoc.cnf" do | ||
let(:config_content) { | ||
<<~EOF | ||
alias testalias = texlive | ||
EOF | ||
} | ||
before(:each) { File.write(texdoc_cnf, config_content) } | ||
|
||
context "and query the exact alias" do | ||
before(:each) { run_texdoc "-ddocfile", "testalias" } | ||
|
||
it "should find aliased documents" do | ||
expect(stderr).to include(debug_line "search", 'Searching documents for pattern "testalias"') | ||
expect(stderr).to match(/texdoc debug-search: \(0da8ec4\) File \S*texlive\/texlive-en\/texlive-en.pdf found/) | ||
expect(stderr).to include(debug_line "docfile", "(0da8ec4) name: texlive/texlive-en/texlive-en.pdf") | ||
expect(stderr).to include(debug_line "docfile", "(0da8ec4) matches: texlive (alias)") | ||
expect(last_command_started).to be_successfully_executed | ||
end | ||
end | ||
|
||
context "and query a misspelled alias" do | ||
before(:each) { run_texdoc "-M", "-ddocfile", "testaliases" } | ||
|
||
it "should not find aliased documents" do | ||
expect(stderr).to include(debug_line "search", 'Searching documents for pattern "testaliases"') | ||
expect(stderr).not_to match(/texdoc debug-search: \(0da8ec4\) File \S*texlive\/texlive-en\/texlive-en.pdf found/) | ||
expect(stderr).not_to include(debug_line "docfile", "(0da8ec4) name: texlive/texlive-en/texlive-en.pdf") | ||
expect(stderr).not_to include(debug_line "docfile", "(0da8ec4) matches: texlive (alias)") | ||
end | ||
end | ||
end | ||
end |