Bug 1070710

Summary: dnf.Base.read_comps() fails in Python3, works ok in Python2
Product: [Fedora] Fedora Reporter: Tim Lauridsen <tim.lauridsen>
Component: dnfAssignee: Packaging Maintenance Team <packaging-team-maint>
Status: CLOSED ERRATA QA Contact: Fedora Extras Quality Assurance <extras-qa>
Severity: unspecified Docs Contact:
Priority: unspecified    
Version: 20CC: akozumpl, packaging-team-maint, pnemade, rholy
Target Milestone: ---   
Target Release: ---   
Hardware: Unspecified   
OS: Unspecified   
Whiteboard:
Fixed In Version: dnf-0.4.17-1.fc20 Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2014-03-08 03:35:30 UTC Type: Bug
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On:    
Bug Blocks: 1066869    
Attachments:
Description Flags
This simple patch fixes the issue by open the output file in binary mode none

Description Tim Lauridsen 2014-02-27 12:13:56 UTC
Description of problem:

using the dnf.Base.read_comps(), fails if called in Python3
works fine in Python2

Version-Release number of selected component (if applicable):
0.4.14

How reproducible:
every time

Steps to Reproduce:
1. get https://github.com/timlau/dnf-apiex/blob/master/dnf-groups.py
2. python3 dnf-groups.py
3.

Actual results:
Traceback (most recent call last):
  File "dnf-groups.py", line 21, in <module>
    de = DnfExample()
  File "dnf-groups.py", line 17, in __init__
    self.read_comps()
  File "/usr/lib/python3.3/site-packages/dnf/base.py", line 406, in read_comps
    decompressed = misc.repo_gen_decompress(comps_fn, 'groups.xml')
  File "/usr/lib/python3.3/site-packages/dnf/yum/misc.py", line 1071, in repo_gen_decompress
    return decompress(filename, dest=dest, check_timestamps=True,fn_only=cached)
  File "/usr/lib/python3.3/site-packages/dnf/yum/misc.py", line 1056, in decompress
    _decompress_chunked(filename, out, ztype)
  File "/usr/lib/python3.3/site-packages/dnf/yum/misc.py", line 732, in _decompress_chunked
    destination.write(data)
TypeError: must be str, not bytes

Expected results:
No trace back

Additional info:

works fine if run with just :

python dnf-groups.py

Comment 1 Tim Lauridsen 2014-02-27 13:26:31 UTC
Look like a the common <str> vs <unicode> issue

def _decompress_chunked(source, dest, ztype):
..
..

    while True:
        try:
            data = s_fn.read(1024000)
        except IOError:
            break

        if not data: break

        try:
            destination.write(data)
        except (OSError, IOError) as e:
            msg = "Error writing to file %s: %s" % (dest, str(e))
            raise dnf.exceptions.MiscError(msg)
..

data is always bytes
destination.write(data)needs unicode in python3

Comment 2 Radek Holy 2014-02-27 14:10:26 UTC
Hello, thank you for the report. We'll fix it.

Comment 3 Tim Lauridsen 2014-02-27 17:29:39 UTC
Created attachment 868667 [details]
This simple patch fixes the issue by open the output file in binary mode

Comment 4 Tim Lauridsen 2014-02-28 09:59:50 UTC
Made a pull request here:
https://github.com/akozumpl/dnf/pull/97

Comment 5 Radek Holy 2014-02-28 10:43:17 UTC
Great, thank you!

Comment 6 Tim Lauridsen 2014-03-04 15:58:16 UTC
fixed upstream

Comment 7 Fedora Update System 2014-03-05 12:57:27 UTC
dnf-0.4.17-1.fc20 has been submitted as an update for Fedora 20.
https://admin.fedoraproject.org/updates/dnf-0.4.17-1.fc20

Comment 8 Fedora Update System 2014-03-06 08:14:15 UTC
Package dnf-0.4.17-1.fc20:
* should fix your issue,
* was pushed to the Fedora 20 testing repository,
* should be available at your local mirror within two days.
Update it with:
# su -c 'yum update --enablerepo=updates-testing dnf-0.4.17-1.fc20'
as soon as you are able to.
Please go to the following url:
https://admin.fedoraproject.org/updates/FEDORA-2014-3465/dnf-0.4.17-1.fc20
then log in and leave karma (feedback).

Comment 9 Tim Lauridsen 2014-03-07 07:56:26 UTC
tested in 0.4.17 and it works fine

Comment 10 Fedora Update System 2014-03-08 03:35:30 UTC
dnf-0.4.17-1.fc20 has been pushed to the Fedora 20 stable repository.  If problems still persist, please make note of it in this bug report.