Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
research-topics-mat-tuhh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Fabian Nuraddin Alexander Gabel
research-topics-mat-tuhh
Commits
4e3195f1
Commit
4e3195f1
authored
3 years ago
by
Fabian Nuraddin Alexander Gabel
Browse files
Options
Downloads
Patches
Plain Diff
reduce output to stdout of test_create_html
parent
8c912c85
No related branches found
Branches containing commit
No related tags found
3 merge requests
!84
Draft: Resolve "create tests for new commandline arguments"
,
!83
Draft: Resolve "deliver css and javascript to www3"
,
!77
Resolve "tuhh-deployment"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bin/test_create_html.sh
+16
-15
16 additions, 15 deletions
bin/test_create_html.sh
with
16 additions
and
15 deletions
bin/test_create_html.sh
+
16
−
15
View file @
4e3195f1
...
...
@@ -5,21 +5,23 @@ RESEARCH_TESTING=$RESEARCH_ROOT/testing/test_create_html
# prepare place for logfiles
mkdir
-p
$RESEARCH_ROOT
/log
LOGFILE
=
$RESEARCH_ROOT
/log/create_html.log
rm
-rf
$LOGFILE
&&
touch
$LOGFILE
#BEGIN Test 1: test create_html for _research.html with no arguments
T
=
1
echo
"##################################################"
#
echo "##################################################"
echo
"Test 1: create_html with no arguments"
echo
"##################################################"
#
echo "##################################################"
# preparation
REF_FILE
=
$RESEARCH_TESTING
/ref_fgabel_research.html
rm
-rf
$RESEARCH_TESTING
/build
cd
$RESEARCH_TESTING
# run test
$RESEARCH_ROOT
/bin/create_html.sh
$RESEARCH_ROOT
/bin/create_html.sh
>>
$LOGFILE
2>&1
# check results
DIFF
=
$(
diff
$REF_FILE
$RESEARCH_TESTING
/build/fgabel_research.html
)
echo
"--------------------------------------------------"
#
echo "--------------------------------------------------"
if
[
"
$DIFF
"
==
""
]
&&
[
-f
"
$RESEARCH_TESTING
/build/fgabel_research.html"
]
then
echo
"Test
$T
: PASSED."
...
...
@@ -32,20 +34,20 @@ fi
#BEGIN Test 2: test create_html for _research.html with build argument
T
=
2
echo
"##################################################"
#
echo "##################################################"
echo
"Test
$T
: create_html with build argument"
echo
"##################################################"
#
echo "##################################################"
# preparation
RESEARCH_BUILD
=
$RESEARCH_TESTING
/build
REF_FILE
=
$RESEARCH_TESTING
/ref_fgabel_research.html
rm
-rf
$RESEARCH_BUILD
mkdir
-p
$RESEARCH_BUILD
cp
-v
$RESEARCH_TESTING
/
*
.md
$RESEARCH_BUILD
cp
$RESEARCH_TESTING
/
*
.md
$RESEARCH_BUILD
# run test
$RESEARCH_ROOT
/bin/create_html.sh
$RESEARCH_BUILD
$RESEARCH_ROOT
/bin/create_html.sh
$RESEARCH_BUILD
>>
$LOGFILE
2>&1
# check results
DIFF
=
$(
diff
$REF_FILE
$RESEARCH_TESTING
/fgabel_research.html
)
echo
"--------------------------------------------------"
#
echo "--------------------------------------------------"
if
[
"
$DIFF
"
==
""
]
&&
[
-f
"
$RESEARCH_BUILD
/fgabel_research.html"
]
then
echo
"Test
$T
: PASSED."
...
...
@@ -58,18 +60,18 @@ fi
#BEGIN Test 3: test create_html for _research.html with build and topics argument
T
=
3
echo
"##################################################"
echo
"Test
$T
: create_html with build argument"
echo
"##################################################"
#
echo "##################################################"
echo
"Test
$T
: create_html with build
and topics
argument"
#
echo "##################################################"
# preparation
RESEARCH_BUILD
=
$RESEARCH_TESTING
/build
RESEARCH_TOPICS
=
$RESEARCH_BUILD
/topics
REF_FILE
=
$RESEARCH_TESTING
/ref_fgabel_research.html
rm
-rf
$RESEARCH_BUILD
mkdir
-p
$RESEARCH_BUILD
&&
mkdir
-p
$RESEARCH_TOPICS
cp
-v
$RESEARCH_TESTING
/
*
.md
$RESEARCH_TOPICS
cp
$RESEARCH_TESTING
/
*
.md
$RESEARCH_TOPICS
# run test
$RESEARCH_ROOT
/bin/create_html.sh
$RESEARCH_BUILD
$RESEARCH_TOPICS
$RESEARCH_ROOT
/bin/create_html.sh
$RESEARCH_BUILD
$RESEARCH_TOPICS
>>
$LOGFILE
2>&1
# check if output exists and results coincide with reference file
DIFF
=
$(
diff
$REF_FILE
$RESEARCH_BUILD
/fgabel_research.html
)
if
[
"
$DIFF
"
==
""
]
&&
[
-f
"
$RESEARCH_BUILD
/fgabel_research.html"
]
...
...
@@ -86,4 +88,3 @@ fi
echo
"--------------------------------------------------"
echo
"ALL
$T
tests in
$0
PASSED."
exit
0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment