#!/usr/bin/env python3 # vim: ft=python fileencoding=utf-8 sts=4 sw=4 et: # Copyright 2017-2018 Florian Bruhin (The Compiler) # This file is part of qutebrowser. # # qutebrowser is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # qutebrowser is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with qutebrowser. If not, see . import os import pytest from scripts import importer _samples = 'tests/unit/scripts/importer_sample' def qm_expected(input_format): """Read expected quickmark-formatted output.""" with open(os.path.join(_samples, input_format, 'quickmarks'), 'r', encoding='utf-8') as f: return f.read() def bm_expected(input_format): """Read expected bookmark-formatted output.""" with open(os.path.join(_samples, input_format, 'bookmarks'), 'r', encoding='utf-8') as f: return f.read() def search_expected(input_format): """Read expected search-formatted (config.py) output.""" with open(os.path.join(_samples, input_format, 'config_py'), 'r', encoding='utf-8') as f: return f.read() def sample_input(input_format): """Get the sample input path.""" return os.path.join(_samples, input_format, 'input') def test_opensearch_convert(): urls = [ # simple search query ('http://foo.bar/s?q={searchTerms}', 'http://foo.bar/s?q={}'), # simple search query with supported additional parameter ('http://foo.bar/s?q={searchTerms}&enc={inputEncoding}', 'http://foo.bar/s?q={}&enc=UTF-8'), # same as above but with supported optional parameter ('http://foo.bar/s?q={searchTerms}&enc={inputEncoding?}', 'http://foo.bar/s?q={}&enc='), # unsupported-but-optional parameter ('http://foo.bar/s?q={searchTerms}&opt={unsupported?}', 'http://foo.bar/s?q={}&opt='), # unsupported-but-optional subset parameter ('http://foo.bar/s?q={searchTerms}&opt={unsupported:unsupported?}', 'http://foo.bar/s?q={}&opt=') ] for os_url, qb_url in urls: assert importer.opensearch_convert(os_url) == qb_url def test_opensearch_convert_unsupported(): """pass an unsupported, required parameter.""" with pytest.raises(KeyError): os_url = 'http://foo.bar/s?q={searchTerms}&req={unsupported}' importer.opensearch_convert(os_url) def test_chrome_bookmarks(capsys): """Read sample bookmarks from chrome profile.""" importer.import_chrome(sample_input('chrome'), ['bookmark'], 'bookmark') imported = capsys.readouterr()[0] assert imported == bm_expected('chrome') def test_chrome_quickmarks(capsys): """Read sample bookmarks from chrome profile.""" importer.import_chrome(sample_input('chrome'), ['bookmark'], 'quickmark') imported = capsys.readouterr()[0] assert imported == qm_expected('chrome') def test_chrome_searches(capsys): """Read sample searches from chrome profile.""" importer.import_chrome(sample_input('chrome'), ['search'], 'search') imported = capsys.readouterr()[0] assert imported == search_expected('chrome') def test_netscape_bookmarks(capsys): importer.import_netscape_bookmarks( sample_input('netscape'), ['bookmark', 'keyword'], 'bookmark') imported = capsys.readouterr()[0] assert imported == bm_expected('netscape') def test_netscape_quickmarks(capsys): importer.import_netscape_bookmarks( sample_input('netscape'), ['bookmark', 'keyword'], 'quickmark') imported = capsys.readouterr()[0] assert imported == qm_expected('netscape') def test_netscape_searches(capsys): importer.import_netscape_bookmarks( sample_input('netscape'), ['search'], 'search') imported = capsys.readouterr()[0] assert imported == search_expected('netscape') def test_mozilla_bookmarks(capsys): importer.import_moz_places( sample_input('mozilla'), ['bookmark', 'keyword'], 'bookmark') imported = capsys.readouterr()[0] assert imported == bm_expected('mozilla') def test_mozilla_quickmarks(capsys): importer.import_moz_places( sample_input('mozilla'), ['bookmark', 'keyword'], 'quickmark') imported = capsys.readouterr()[0] assert imported == qm_expected('mozilla') def test_mozilla_searches(capsys): importer.import_moz_places(sample_input('mozilla'), ['search'], 'search') imported = capsys.readouterr()[0] assert imported == search_expected('mozilla')