Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(24)

Side by Side Diff: third_party/xdg-utils/tests/xdg-mime/t.02-query_missing_file

Issue 151098: Patch from mdm@google.com... (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/
Patch Set: Created 11 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
Property Changes:
Name: svn:executable
+ *
OLDNEW
(Empty)
1 #!/bin/bash
2
3 . "$XDG_TEST_DIR/include/testassertions.sh"
4
5 . "$XDG_TEST_DIR/include/testcontrol.sh"
6
7 test_query_missing_file() {
8 INPUT_FILE='non-existant-file.xml'
9
10 test_start "$FUNCNAME: verify correct error for missing file: $INPUT_FILE"
11 test_purpose "Verify that the correct error is generated when the mime file is m issing. This is bug 7123 case 1"
12
13 ## Check dependencies
14 test_init
15
16 # query requires a desktop environment
17 require_notroot
18 assert_nofile "$INPUT_FILE"
19
20 ## Main test
21 test_procedure
22
23 assert_exit 2 xdg-mime query filetype "$INPUT_FILE"
24 assert_stderr
25 assert_nostdout
26
27 test_result
28 }
29
30 run_test test_query_missing_file
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698