
Fixed versioning and adjusted some build files to bring them as close to a standard as possible. - Removed centos files - Added version tracking via GITREVCOUNT - Fixed mismatch in plugin name, set to python3-k8sapp-<app> - Standardized plugin debian files (rules, *.install) - Plugin wheels saved to /plugin instead of /plugin/<app> Test Plan: PASS - Build-pkgs -a PASS - Build-image PASS - Install, bootstrap, unlock PASS - app tarball contains wheel file PASS - wheel versioning updated properly Story: 2010542 Task: 47197 Signed-off-by: Leonardo Fagundes Luz Serrano <Leonardo.FagundesLuzSerrano@windriver.com> Change-Id: I099f6e68145750f429a7c95ed200b6abf4649061
20 lines
520 B
Python
20 lines
520 B
Python
# Copyright (c) 2021 Wind River Systems, Inc.
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
from k8sapp_auditd.tests import test_plugins
|
|
|
|
from sysinv.db import api as dbapi
|
|
from sysinv.tests.db import utils as dbutils
|
|
from sysinv.tests.helm import base
|
|
|
|
|
|
class AuditdTestCase(test_plugins.K8SAppAuditdAppMixin,
|
|
base.HelmTestCaseMixin):
|
|
|
|
def setUp(self):
|
|
super(AuditdTestCase, self).setUp()
|
|
self.app = dbutils.create_test_app(name='auditd')
|
|
self.dbapi = dbapi.get_instance()
|