1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# -*- coding: UTF-8 -*-
# Copyright 2015 Red Hat, Inc.
# Part of clufter project
# Licensed under GPLv2+ (a copy included | http://gnu.org/licenses/gpl-2.0.txt)
"""Test exercising _try_edit"""
__author__ = "Jan Pokorný <jpokorny @at@ Red Hat .dot. com>"
from os.path import join, dirname as d; execfile(join(d(d((__file__))), '_go'))
from os.path import dirname
from unittest import TestCase
from .filter_manager import FilterManager
from .utils_prog import getenv_namespaced, setenv_namespaced
class TryEdit(TestCase):
def setUp(self):
setenv_namespaced('NOSALT', 'true')
self.flt_mgr = FilterManager.init_lookup('ccs2needlexml',
ext_plugins=False)
#def tearDown(self):
# self.flt_mgr.registry.setup(True) # start from scratch
# self.flt_mgr = None
def test_fix_manually(self):
testfile = join(dirname(__file__), 'try_edit.conf')
out_obj = self.flt_mgr('ccs2needlexml', ('file', testfile),
editor="sed -i -e 's|-1|1|'")
#editor="sed -i 's|\-1|1|;w /dev/stdout' --")
#print out_obj('bytestring')
with open(join(dirname(__file__), 'try_edit.ok')) as okfd:
self.assertEqual(out_obj("bytestring"), okfd.read())
from os.path import join, dirname as d; execfile(join(d(d(__file__)), '_gone'))
|