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 c8f6205 commit 1e09362
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.libraries.actor import preparepamuserdb
from leapp.models import PamUserDbLocation
from leapp.tags import IPUWorkflowTag, RPMUpgradePhaseTag


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.libraries.stdlib import api
from leapp.models import PamUserDbLocation


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().error(
'{} returned non-zero exit status: {}'.format(cmd, 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
from pathlib import Path

import pytest

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

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 1e09362

Please sign in to comment.