Compare commits

...

No commits in common. "c8" and "c8s" have entirely different histories.
c8 ... c8s

9 changed files with 125 additions and 2 deletions

View File

@ -1 +0,0 @@
56af344e839efe3f6ecb2a62f6fed54a2e988e0e SOURCES/anaconda-user-help-8.8.3.tar.gz

21
.gitignore vendored
View File

@ -1 +1,20 @@
SOURCES/anaconda-user-help-8.8.3.tar.gz
/anaconda-user-help-22.1.tar.gz
/anaconda-user-help-22.4.tar.gz
/anaconda-user-help-26.1.tar.gz
/anaconda-user-help-blivet-gui.tar.gz
/anaconda-user-help-8.0.1.tar.gz
/anaconda-user-help-8.0.2.tar.gz
/anaconda-user-help-8.0.3.tar.gz
/anaconda-user-help-8.0.4.tar.gz
/anaconda-user-help-8.0.6.tar.gz
/anaconda-user-help-8.0.7.tar.gz
/anaconda-user-help-8.0.9.tar.gz
/anaconda-user-help-8.1.1.tar.gz
/anaconda-user-help-8.2.1.tar.gz
/anaconda-user-help-8.2.2.tar.gz
/anaconda-user-help-8.2.3.tar.gz
/anaconda-user-help-8.3.1.tar.gz
/anaconda-user-help-8.3.3.tar.gz
/anaconda-user-help-8.7.1.tar.gz
/anaconda-user-help-8.8.2.tar.gz
/anaconda-user-help-8.8.3.tar.gz

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-8
decision_context: osci_compose_gate
rules:
- !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional}

1
sources Normal file
View File

@ -0,0 +1 @@
SHA512 (anaconda-user-help-8.8.3.tar.gz) = 5a37082e999e2232bab125098da701c45312ef9130a1449a256c69e1eb670177e5bfbd83dfc1ad691f3f23412e685864a5c42896513311efcd66b6dce10fcbb6

52
tests/branding/Makefile Normal file
View File

@ -0,0 +1,52 @@
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Makefile of /anaconda-user-help.git/branding
# Description: Anaconda user help branding test
# Author: Peter Kotvan <pkotvan@redhat.com>
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Copyright (c) 2019 Red Hat, Inc.
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
export TEST=/anaconda-user-help.git/branding
export TESTVERSION=1.0
BUILT_FILES=
FILES=$(METADATA) runtest.sh Makefile PURPOSE
.PHONY: all install download clean
run: $(FILES) build
./runtest.sh
build: $(BUILT_FILES)
test -x runtest.sh || chmod a+x runtest.sh
clean:
rm -f *~ $(BUILT_FILES)
include /usr/share/rhts/lib/rhts-make.include
$(METADATA): Makefile
@echo "Owner: Peter Kotvan <pkotvan@redhat.com>" > $(METADATA)
@echo "Name: $(TEST)" >> $(METADATA)
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
@echo "Path: $(TEST_DIR)" >> $(METADATA)
@echo "Description: Anaconda user help branding test" >> $(METADATA)
@echo "Type: Install" >> $(METADATA)
@echo "TestTime: 20m" >> $(METADATA)
@echo "Priority: Normal" >> $(METADATA)
@echo "License: GPLv3" >> $(METADATA)
@echo "Confidential: no" >> $(METADATA)
@echo "Destructive: no" >> $(METADATA)
# @echo "Releases: -RHEL4 -RHELClient5 -RHELServer5" >> $(METADATA)
# RhtsRequires:
@echo "RhtsRequires: beakerlib" >> $(METADATA)
# Requires:
# @echo "Requires: some-pkg" >> $(METADATA)
rhts-lint $(METADATA)

3
tests/branding/PURPOSE Normal file
View File

@ -0,0 +1,3 @@
PURPOSE of /anaconda-user-help.git/branding
Description: Anaconda user help branding test
Author: Peter Kotvan <pkotvan@redhat.com>

35
tests/branding/runtest.sh Executable file
View File

@ -0,0 +1,35 @@
#!/bin/bash
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# runtest.sh of /anaconda-user-help.git/branding
# Description: Anaconda user help branding test
# Author: Peter Kotvan <pkotvan@redhat.com>
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Copyright (c) 2019 Red Hat, Inc.
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Include Beaker environment
. /usr/bin/rhts-environment.sh || exit 1
. /usr/share/beakerlib/beakerlib.sh || exit 1
rlJournalStart
# rlPhaseStartSetup
# rlPhaseEnd
rlPhaseStartTest
rlLog "Verify whether anaconda user help contains the string fedora."
rlRun -s "rpm -ql anaconda-user-help | xargs grep -irq fedora" 123
if [[ $? -ne 123 ]]
then
rlFileSubmit ${rlRun_LOG} "fedora_string.log"
fi
rlPhaseEnd
# rlPhaseStartCleanup
# rlPhaseEnd
rlJournalPrintText
rlJournalEnd

8
tests/tests.yml Normal file
View File

@ -0,0 +1,8 @@
---
- hosts: all
roles:
- role: standard-test-beakerlib
tags:
- classic
tests:
- branding