Compare commits

...

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

9 changed files with 118 additions and 17 deletions

View File

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

7
.gitignore vendored
View File

@ -1 +1,6 @@
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-9.0.0.tar.gz
/anaconda-user-help-9.2.1.tar.gz

View File

@ -1,7 +1,7 @@
Summary: Content for the Anaconda built-in help system
Name: anaconda-user-help
URL: https://access.redhat.com/documentation
Version: 8.8.3
Version: 9.2.1
Release: 1%{?dist}
Epoch: 1
BuildArch: noarch
@ -28,21 +28,13 @@ cp -r * %{buildroot}%{_datadir}/anaconda/help/
%{_datadir}/anaconda/help/*
%changelog
* Tue Feb 14 2023 Martin Kolman <mkolman@redhat.com> - 8.8.3-1
- fix anchor files
Related: rhbz#1949071
* Tue Jan 24 2023 Martin Kolman <mkolman@redhat.com> - 9.2.1-1
- update help content for RHEL 9.2
Resolves: rhbz#2071652
* Thu Feb 02 2023 Martin Kolman <mkolman@redhat.com> - 8.8.2-1
- fix anchor files
Related: rhbz#1949071
* Tue Jan 24 2023 Martin Kolman <mkolman@redhat.com> - 8.8.1-1
- update help content for RHEL 8.8
Resolves: rhbz#1949071
* Fri Aug 19 2022 Martin Kolman <mkolman@redhat.com> - 8.7.1-1
- update help content for RHEL 8.7
Resolves: rhbz#1949071
* Tue Jan 04 2022 Martin Kolman <mkolman@redhat.com> - 9.0.0-1
- initial help content for RHEL 9.0
Resolves: rhbz#1995939
* Fri Sep 4 2020 Martin Kolman <mkolman@redhat.com> - 8.3.3-1
- add missing help content for installation progress screen

6
gating.yaml Normal file
View File

@ -0,0 +1,6 @@
--- !Policy
product_versions:
- rhel-9
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-9.2.1.tar.gz) = e3b56b4f0c956f7be410284c386937e3d1adf47a38e0640c10cd35dd8594a17b1c2ba45bd9a9913e716e260b084afafdc567d7039e84de7d4a0fa4de489bf4d2

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