Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
pamac
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
154
Issues
154
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
0
Merge Requests
0
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Applications
pamac
Commits
9750a32d
Commit
9750a32d
authored
Sep 16, 2018
by
Guillaume Benoit
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'papajoke-master-patch-94908' into 'master'
file python tests See merge request
!439
parents
bbf9bfc4
dab0575d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
197 additions
and
0 deletions
+197
-0
examples/python/test-infos.py
examples/python/test-infos.py
+197
-0
No files found.
examples/python/test-infos.py
0 → 100644
View file @
9750a32d
#!/usr/bin/python
"""
somes tests for python
Depends On:
pamac
pacman
not installed:
ruby-yard
"""
# run only one:
# ./tests.py GetInfosCase.test_versions_search_db
# ./tests.py -v -k files
import
gi
import
os
import
subprocess
import
locale
from
datetime
import
date
import
unittest
gi
.
require_version
(
'Pamac'
,
'1.0'
)
# import xml /usr/share/gir-1.0/Pamac-1.0.gir
from
gi.repository
import
GLib
,
Pamac
def
get_item_desc
(
file_pacman
:
str
,
key
:
str
=
"%VERSION%"
):
"""
get values in db pacman file
/var/lib/pacman/local/***-***/{desc,files}
key: %DEPENDS% %INSTALLDATE% %VERSION% %NAME%...
"""
found
=
False
with
open
(
file_pacman
)
as
f_db
:
for
line
in
f_db
:
if
line
.
startswith
(
key
):
found
=
True
continue
if
found
:
if
line
.
strip
():
yield
line
.
strip
()
else
:
break
class
GetInfosCase
(
unittest
.
TestCase
):
"""Hieght level tests"""
def
setUp
(
self
):
"""init tests"""
locale
.
setlocale
(
locale
.
LC_ALL
,
''
)
self
.
config
=
Pamac
.
Config
(
conf_path
=
"/etc/pamac.conf"
)
self
.
config
.
set_enable_aur
(
True
)
# is true
self
.
db
=
Pamac
.
Database
(
config
=
self
.
config
)
# view src/database.vala
def
tearDown
(
self
):
pass
def
test_pacman_installed
(
self
):
"""pacman installed for tests"""
pkg
=
self
.
db
.
get_pkg_details
(
"pacman"
,
""
)
self
.
assertEqual
(
"pacman"
,
pkg
.
get_name
())
self
.
assertIsNotNone
(
pkg
.
props
.
installed_version
)
def
test_not_installed
(
self
):
"""detect not installed"""
# package not exist
pkg
=
self
.
db
.
get_pkg_details
(
"toto-test"
,
""
)
self
.
assertNotEqual
(
"toto-test"
,
pkg
.
get_name
())
self
.
assertEqual
(
pkg
.
props
.
installed_version
,
""
)
# package exist
pkg
=
self
.
db
.
get_pkg_details
(
"ruby-yard"
,
""
)
self
.
assertEqual
(
pkg
.
props
.
installed_version
,
""
)
def
test_giobject_detail_name
(
self
):
"""attrs .props are same as fonctions"""
pkg
=
self
.
db
.
get_pkg_details
(
"pacman"
,
""
)
self
.
assertEqual
(
pkg
.
props
.
name
,
pkg
.
get_name
())
def
test_giobject_search_name
(
self
):
"""function db.search_pkgs()"""
pkgs
=
self
.
db
.
search_pkgs
(
"pacman"
)
for
pkg
in
pkgs
:
self
.
assertEqual
(
pkg
.
props
.
name
,
pkg
.
get_name
())
def
test_giobject_search_version
(
self
):
"""version install is as version"""
#pkgs = self.db.search_pkgs("pacman")
pkgs
=
self
.
db
.
get_installed_pkgs
()
for
pkg
in
pkgs
:
if
pkg
.
props
.
installed_version
:
with
self
.
subTest
(
pkg
=
pkg
):
self
.
assertEqual
(
pkg
.
props
.
version
,
pkg
.
props
.
installed_version
)
def
test_count_installed
(
self
):
"""count on disk pacman db packages installed"""
pkgs
=
self
.
db
.
get_installed_pkgs
()
ldir
=
os
.
listdir
(
"/var/lib/pacman/local/"
)
ldir
.
remove
(
"ALPM_DB_VERSION"
)
self
.
assertEqual
(
len
(
ldir
),
len
(
pkgs
))
def
test_all_installed
(
self
):
"""test names/version on disk pacman db packages installed"""
plist
=
[]
pkgs
=
self
.
db
.
get_installed_pkgs
()
plist
=
{
f
"
{
pkg
.
props
.
name
}
-
{
pkg
.
props
.
installed_version
}
"
for
pkg
in
pkgs
}
ldir
=
os
.
listdir
(
"/var/lib/pacman/local/"
)
ldir
.
remove
(
"ALPM_DB_VERSION"
)
for
p_name_v
in
plist
:
self
.
assertIn
(
p_name_v
,
ldir
)
def
test_versions_search_db
(
self
):
"""VERSION is as pacman"""
pkgs
=
self
.
db
.
search_pkgs
(
"pacman"
)
for
pkg
in
pkgs
:
if
pkg
.
props
.
installed_version
:
with
self
.
subTest
(
pkg
=
pkg
):
fdesc
=
f
"/var/lib/pacman/local/
{
pkg
.
props
.
name
}
-
{
pkg
.
props
.
version
}
/desc"
self
.
assertTrue
(
os
.
path
.
exists
(
fdesc
))
result
=
get_item_desc
(
fdesc
,
"%VERSION%"
)
self
.
assertEqual
(
pkg
.
props
.
version
,
next
(
result
))
def
test_depends_search_db
(
self
):
"""DEPENDS are as pacman"""
pkgs
=
self
.
db
.
search_pkgs
(
"pacman"
)
for
pkg
in
pkgs
:
if
pkg
.
props
.
installed_version
:
with
self
.
subTest
(
pkg
=
pkg
):
fdesc
=
f
"/var/lib/pacman/local/
{
pkg
.
props
.
name
}
-
{
pkg
.
props
.
version
}
/desc"
self
.
assertTrue
(
os
.
path
.
exists
(
fdesc
))
package
=
self
.
db
.
get_pkg_details
(
pkg
.
props
.
name
,
""
)
result
=
get_item_desc
(
fdesc
,
"%DEPENDS%"
)
for
dep
in
result
:
self
.
assertIn
(
dep
,
package
.
props
.
depends
)
def
test_search_pacman
(
self
):
"""compare results with pacman -Ssq"""
result
=
subprocess
.
run
([
'pacman'
,
'-Ssq'
,
'pacman'
],
capture_output
=
True
,
check
=
True
)
result
=
result
.
stdout
.
decode
().
split
(
"
\n
"
)
result
.
remove
(
''
)
pkgs
=
self
.
db
.
search_pkgs
(
"pacman"
)
pkgs
=
{
pkg
.
props
.
name
for
pkg
in
pkgs
}
for
pkg
in
result
:
self
.
assertIn
(
pkg
,
pkgs
)
'''
can't test if aur package installed
for pkg in pkgs:
self.assertIn(pkg, result)
'''
def
test_date_detail_pacman
(
self
):
"""valid date and locale date"""
pkg
=
self
.
db
.
get_pkg_details
(
"pacman"
,
""
)
fdesc
=
f
"/var/lib/pacman/local/
{
pkg
.
props
.
name
}
-
{
pkg
.
props
.
version
}
/desc"
self
.
assertTrue
(
os
.
path
.
exists
(
fdesc
))
result
=
get_item_desc
(
fdesc
,
"%BUILDDATE%"
)
d_test
=
int
(
next
(
result
))
d_test
=
date
.
fromtimestamp
(
d_test
).
strftime
(
"%x"
)
self
.
assertEqual
(
pkg
.
props
.
builddate
,
d_test
)
def
test_files
(
self
):
"""files same as pacman db"""
pkg
=
self
.
db
.
get_pkg_details
(
"pacman"
,
""
)
fdesc
=
f
"/var/lib/pacman/local/
{
pkg
.
props
.
name
}
-
{
pkg
.
props
.
version
}
/files"
self
.
assertTrue
(
os
.
path
.
exists
(
fdesc
))
myfiles
=
self
.
db
.
get_pkg_files
(
"pacman"
)
result
=
get_item_desc
(
fdesc
,
"%FILES%"
)
for
f_name
in
result
:
if
not
f_name
.
endswith
(
"/"
):
self
.
assertIn
(
"/"
+
f_name
,
myfiles
)
def
test_search_aur
(
self
):
"""simple search in aur"""
loop
=
GLib
.
MainLoop
()
def
on_search_aur_pkgs_ready_callback
(
source_object
,
result
,
user_data
):
found
=
False
self
.
assertIsNone
(
user_data
)
try
:
pkgs
=
source_object
.
search_in_aur_finish
(
result
)
for
pkg
in
pkgs
:
with
self
.
subTest
(
pkg
=
pkg
):
self
.
assertTrue
(
pkg
.
props
.
version
)
self
.
assertEqual
(
pkg
.
props
.
version
,
pkg
.
get_version
())
self
.
assertTrue
(
isinstance
(
pkg
.
props
.
popularity
,
(
int
,
float
)))
found
=
True
finally
:
loop
.
quit
()
self
.
assertTrue
(
found
)
self
.
db
.
search_in_aur_async
(
'pamac'
,
on_search_aur_pkgs_ready_callback
,
None
)
loop
.
run
()
if
__name__
==
'__main__'
:
unittest
.
main
(
verbosity
=
2
,
failfast
=
True
)
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