Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5dc33eea
Commit
5dc33eea
authored
Feb 26, 2017
by
INADA Naoki
Committed by
GitHub
Feb 26, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-29110: add test for Aifc_write. (GH-293)
follow up of GH-162
parent
5aa3856b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
Lib/aifc.py
Lib/aifc.py
+4
-0
Lib/test/test_aifc.py
Lib/test/test_aifc.py
+9
-1
No files found.
Lib/aifc.py
View file @
5dc33eea
...
...
@@ -303,6 +303,8 @@ class Aifc_read:
# _ssnd_chunk -- instantiation of a chunk class for the SSND chunk
# _framesize -- size of one frame in the file
_file
=
None
# Set here since __del__ checks it
def
initfp
(
self
,
file
):
self
.
_version
=
0
self
.
_convert
=
None
...
...
@@ -547,6 +549,8 @@ class Aifc_write:
# _datalength -- the size of the audio samples written to the header
# _datawritten -- the size of the audio samples actually written
_file
=
None
# Set here since __del__ checks it
def
__init__
(
self
,
f
):
if
isinstance
(
f
,
str
):
file_object
=
builtins
.
open
(
f
,
'wb'
)
...
...
Lib/test/test_aifc.py
View file @
5dc33eea
from
test.support
import
check_no_resource_warning
,
findfile
,
TESTFN
,
unlink
import
unittest
from
unittest
import
mock
from
test
import
audiotests
from
audioop
import
byteswap
import
io
...
...
@@ -155,7 +156,14 @@ class AifcMiscTest(audiotests.AudioTests, unittest.TestCase):
with
self
.
assertRaises
(
aifc
.
Error
):
# Try opening a non-AIFC file, with the expectation that
# `aifc.open` will fail (without raising a ResourceWarning)
f
=
self
.
f
=
aifc
.
open
(
non_aifc_file
,
'rb'
)
self
.
f
=
aifc
.
open
(
non_aifc_file
,
'rb'
)
# Aifc_write.initfp() won't raise in normal case. But some errors
# (e.g. MemoryError, KeyboardInterrupt, etc..) can happen.
with
mock
.
patch
.
object
(
aifc
.
Aifc_write
,
'initfp'
,
side_effect
=
RuntimeError
):
with
self
.
assertRaises
(
RuntimeError
):
self
.
fout
=
aifc
.
open
(
TESTFN
,
'wb'
)
def
test_params_added
(
self
):
f
=
self
.
f
=
aifc
.
open
(
TESTFN
,
'wb'
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment