-
Notifications
You must be signed in to change notification settings - Fork 2
85 lines (74 loc) · 2.43 KB
/
test-replace-string.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
---
name: Test replace-string action
on:
push:
branches:
- A0-3280-replace-string
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
main:
name: Test replace-string action
runs-on: ubuntu-20.04
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Replace string
id: replace-string
uses: ./replace-string
with:
string: 'Apple Redberry'
replace-regex: 'Redberry'
flags: 'g'
replace-with: 'Apricot'
- name: Check replaced string
shell: bash
run: |
if [[ '${{ steps.replace-string.output.replaced-string }}' != 'Apple Apricot' ]]; then
echo '!!! Action replace-string failed to make simple string replacement'
exit 1
fi
- name: Create a dummy file to read from
shell: bash
run: |
echo 'Apricot Blueberry' > tmp-read-from-file.txt
- name: Replace string from file
id: replace-from-file
uses: ./replace-string
with:
read-from-file: 'tmp-read-from-file.txt'
replace-regex: 'Blue'
flags: 'g'
replace-with: 'Red'
- name: Check replaced string
shell: bash
run: |
if [[ '${{ steps.replace-string.output.replaced-string }}' != 'Apricot Redberry' ]]; then
echo '!!! Action replace-string failed to replace string from a file'
exit 1
fi
- name: Create an output to read from
shell: bash
id: output
run: |
echo "read-me=Cranberry and green apple" >> $GITHUB_OUTPUT
- name: Replace string from output and write to file
id: replace-to-file
uses: ./replace-string
with:
string: ${{ steps.output.outputs.read-me }}
replace-regex: 'green'
flags: 'g'
replace-with: 'red'
write-to-file: 'tmp-write-to-file.txt'
- name: Check replaced string
shell: bash
run: |
if [[ ! -f tmp-write-to-file.txt ]]; then
echo "!!! Action replace-string failed to create an output file"
fi
output_from_file=$(cat tmp-write-to-file.txt);
if [[ "${output_from_file}" != 'Cranberry and red apple' ]]; then
echo "!!! Action replace-string failed to create an output file with properly replaced string"
fi