Skip to content

Commit

Permalink
PreparePamUserDB: implement db conversion
Browse files Browse the repository at this point in the history
Check the databases reported by ScanPamUserDB and convert them to GDBM
format. It also includes the component test for the actor.

Signed-off-by: Iker Pedrosa <[email protected]>
  • Loading branch information
ikerexxe committed Aug 28, 2024
1 parent e601b67 commit e6fb9e9
Show file tree
Hide file tree
Showing 5 changed files with 60 additions and 0 deletions.
18 changes: 18 additions & 0 deletions repos/system_upgrade/el9toel10/actors/preparepamuserdb/actor.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
from leapp.actors import Actor
from leapp.models import PamUserDbLocation
from leapp.tags import RPMUpgradePhaseTag, IPUWorkflowTag
from leapp.libraries.actor import preparepamuserdb


class PreparePamUserDb(Actor):
"""
Convert the pam_userdb databases to GDBM
"""

name = 'prepare_pam_user_db'
consumes = (PamUserDbLocation,)
produces = ()
tags = (RPMUpgradePhaseTag, IPUWorkflowTag)

def process(self):
preparepamuserdb.process()
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import subprocess

from leapp.models import PamUserDbLocation
from leapp.libraries.stdlib import api


def process():
for msg in api.consume(PamUserDbLocation):
locations = msg.locations

for location in locations:
cmd = f'db_converter --src {location}.db --dest {location}.gdbm'
try:
subprocess.call(cmd, shell=True)
except subprocess.CalledProcessError as e:
api.current_logger().debug(
f"'{cmd}' returned non-zero exit status: {e.returncode}"
)
return
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import os

import pytest

from pathlib import Path
from leapp.models import PamUserDbLocation
from leapp.libraries.actor import preparepamuserdb
from leapp.libraries.stdlib import api

CUR_DIR = os.path.dirname(os.path.abspath(__file__))


def test_process_locations(current_actor_context):
current_actor_context.feed(
PamUserDbLocation(
locations=[f'{CUR_DIR}/files/db1', f'{CUR_DIR}/files/db2']
)
)
current_actor_context.run()
db1 = Path(f'{CUR_DIR}/files/db1.gdbm')
assert db1.is_file()
db2 = Path(f'{CUR_DIR}/files/db2.gdbm')
assert db2.is_file()

0 comments on commit e6fb9e9

Please sign in to comment.