Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
mat2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tails
mat2
Commits
8cf9aeeb
Commit
8cf9aeeb
authored
6 years ago
by
Julien (jvoisin) Voisin
Browse files
Options
Downloads
Patches
Plain Diff
Rename mat2.py to mat2
parent
38fae60b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
mat2
+0
-0
0 additions, 0 deletions
mat2
tests/test_climat2.py
+22
-22
22 additions, 22 deletions
tests/test_climat2.py
with
23 additions
and
23 deletions
README.md
+
1
−
1
View file @
8cf9aeeb
...
...
@@ -47,7 +47,7 @@ $ python3 -m unittest discover -v
# Supported formats
```
bash
$
python3 ./mat2
.py
-l
$
python3 ./mat2
-l
```
# Related softwares
...
...
This diff is collapsed.
Click to expand it.
mat2
.py
→
mat2
+
0
−
0
View file @
8cf9aeeb
File moved
This diff is collapsed.
Click to expand it.
tests/test_climat2.py
+
22
−
22
View file @
8cf9aeeb
...
...
@@ -6,43 +6,43 @@ import unittest
class
TestHelp
(
unittest
.
TestCase
):
def
test_help
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--help
'
],
stdout
=
subprocess
.
PIPE
)
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--help
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
usage: mat2
.py
[-h] [-v] [-l] [-c | -s | -L] [files [files ...]]
'
,
stdout
)
self
.
assertIn
(
b
'
usage: mat2 [-h] [-v] [-l] [-c | -s | -L] [files [files ...]]
'
,
stdout
)
def
test_no_arg
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
],
stdout
=
subprocess
.
PIPE
)
proc
=
subprocess
.
Popen
([
'
./mat2
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
usage: mat2
.py
[-h] [-v] [-l] [-c | -s | -L] [files [files ...]]
'
,
stdout
)
self
.
assertIn
(
b
'
usage: mat2 [-h] [-v] [-l] [-c | -s | -L] [files [files ...]]
'
,
stdout
)
class
TestVersion
(
unittest
.
TestCase
):
def
test_version
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--version
'
],
stdout
=
subprocess
.
PIPE
)
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--version
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertTrue
(
stdout
.
startswith
(
b
'
MAT2
'
))
class
TestExclusiveArgs
(
unittest
.
TestCase
):
def
test_version
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
-s
'
,
'
-c
'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
-s
'
,
'
-c
'
],
stdout
=
subprocess
.
PIPE
,
stderr
=
subprocess
.
PIPE
)
stdout
,
stderr
=
proc
.
communicate
()
self
.
assertIn
(
b
'
mat2
.py
: error: argument -c/--check: not allowed with argument -s/--show
'
,
stderr
)
self
.
assertIn
(
b
'
mat2: error: argument -c/--check: not allowed with argument -s/--show
'
,
stderr
)
class
TestReturnValue
(
unittest
.
TestCase
):
def
test_nonzero
(
self
):
ret
=
subprocess
.
call
([
'
./mat2
.py
'
,
'
./mat2
.py
'
],
stdout
=
subprocess
.
DEVNULL
)
ret
=
subprocess
.
call
([
'
./mat2
'
,
'
./mat2
'
],
stdout
=
subprocess
.
DEVNULL
)
self
.
assertEqual
(
255
,
ret
)
ret
=
subprocess
.
call
([
'
./mat2
.py
'
,
'
--whololo
'
],
stderr
=
subprocess
.
DEVNULL
)
ret
=
subprocess
.
call
([
'
./mat2
'
,
'
--whololo
'
],
stderr
=
subprocess
.
DEVNULL
)
self
.
assertEqual
(
2
,
ret
)
def
test_zero
(
self
):
ret
=
subprocess
.
call
([
'
./mat2
.py
'
],
stdout
=
subprocess
.
DEVNULL
)
ret
=
subprocess
.
call
([
'
./mat2
'
],
stdout
=
subprocess
.
DEVNULL
)
self
.
assertEqual
(
0
,
ret
)
ret
=
subprocess
.
call
([
'
./mat2
.py
'
,
'
--show
'
,
'
./mat2
.py
'
],
stdout
=
subprocess
.
DEVNULL
)
ret
=
subprocess
.
call
([
'
./mat2
'
,
'
--show
'
,
'
./mat2
'
],
stdout
=
subprocess
.
DEVNULL
)
self
.
assertEqual
(
0
,
ret
)
...
...
@@ -50,16 +50,16 @@ class TestCleanMeta(unittest.TestCase):
def
test_jpg
(
self
):
shutil
.
copy
(
'
./tests/data/dirty.jpg
'
,
'
./tests/data/clean.jpg
'
)
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/clean.jpg
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/clean.jpg
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
Comment: Created with GIMP
'
,
stdout
)
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
./tests/data/clean.jpg
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
./tests/data/clean.jpg
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/clean.cleaned.jpg
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/clean.cleaned.jpg
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertNotIn
(
b
'
Comment: Created with GIMP
'
,
stdout
)
...
...
@@ -69,25 +69,25 @@ class TestCleanMeta(unittest.TestCase):
class
TestGetMeta
(
unittest
.
TestCase
):
def
test_pdf
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.pdf
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.pdf
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
producer: pdfTeX-1.40.14
'
,
stdout
)
def
test_png
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.png
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.png
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
Comment: This is a comment, be careful!
'
,
stdout
)
def
test_jpg
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.jpg
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.jpg
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
Comment: Created with GIMP
'
,
stdout
)
def
test_docx
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.docx
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.docx
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
Application: LibreOffice/5.4.5.1$Linux_X86_64
'
,
stdout
)
...
...
@@ -95,7 +95,7 @@ class TestGetMeta(unittest.TestCase):
self
.
assertIn
(
b
'
revision: 1
'
,
stdout
)
def
test_odt
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.odt
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.odt
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
generator: LibreOffice/3.3$Unix
'
,
stdout
)
...
...
@@ -103,14 +103,14 @@ class TestGetMeta(unittest.TestCase):
self
.
assertIn
(
b
'
date_time: 2011-07-26 02:40:16
'
,
stdout
)
def
test_mp3
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.mp3
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.mp3
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
TALB: harmfull
'
,
stdout
)
self
.
assertIn
(
b
'
COMM::: Thank you for using MAT !
'
,
stdout
)
def
test_flac
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.flac
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.flac
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
comments: Thank you for using MAT !
'
,
stdout
)
...
...
@@ -118,7 +118,7 @@ class TestGetMeta(unittest.TestCase):
self
.
assertIn
(
b
'
title: I am so
'
,
stdout
)
def
test_ogg
(
self
):
proc
=
subprocess
.
Popen
([
'
./mat2
.py
'
,
'
--show
'
,
'
./tests/data/dirty.ogg
'
],
proc
=
subprocess
.
Popen
([
'
./mat2
'
,
'
--show
'
,
'
./tests/data/dirty.ogg
'
],
stdout
=
subprocess
.
PIPE
)
stdout
,
_
=
proc
.
communicate
()
self
.
assertIn
(
b
'
comments: Thank you for using MAT !
'
,
stdout
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment