#!/bin/bash ## Include utility functions. . "$XDG_TEST_DIR/include/testassertions.sh" . "$XDG_TEST_DIR/include/testcontrol.sh" ## Test function test_user_mime_uninstall() { # TODO: should follow the filename tests. QUERY_FILE="testfile.xdgtest" ## Begin the test. test_start "$FUNCNAME: uninstall user mime type" test_purpose "Verify that mime types get removed from the user space correctly." # Dependencies section test_init require_notroot use_file "$XDG_TEST_DIR/xdg-mime/data/testmime.xml" INPUT_FILE edit_file "$INPUT_FILE" "x-xdg-testpattern" TEST_MIME "x-$XDG_TEST_ID" assert_file "$INPUT_FILE" echo "text/$TEST_MIME" >testmime.expected echo "Some text." >testfile.xdgtest assert_file testfile.xdgtest assert_exit 0 xdg-mime query filetype testfile.xdgtest assert_stdout mv out.stdout origmime.save # Install & verify mime type is installed assert_exit 0 xdg-mime install --mode user "$INPUT_FILE" assert_exit 0 xdg-mime query filetype testfile.xdgtest assert_stdout testmime.expected # Test steps section test_procedure assert_exit 0 xdg-mime uninstall --mode user "$INPUT_FILE" assert_nostdout assert_nostderr ## Verify uninstall assert_exit 0 xdg-mime query filetype $QUERY_FILE assert_stdout origmime.save test_result } run_test test_user_mime_uninstall