-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathchangelog-test.sh
executable file
·51 lines (46 loc) · 1.89 KB
/
changelog-test.sh
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
#!/bin/bash
pr_id=${PR_ID}
new_resources=`cat .changelog/${pr_id}.txt| grep -Poz "(?<=release-note:new-resource\n)\w+\n" | awk '{print "resource/"$1}'`
echo new_resources: $new_resources
new_data_sources=`cat .changelog/${pr_id}.txt| grep -Poz "(?<=release-note:new-data-source\n)\w+\n" | awk '{print "datasource/"$1}'`
echo new_data_sources: $new_data_sources
source_names=`cat .changelog/${pr_id}.txt| grep -E "^(resource|datasource)\/(\w+)" | awk -F ":" '{print $1}'`
echo source_names: $source_names
source_names="$source_names $new_resources $new_data_sources"
source_names=`echo $source_names | xargs -n1 | sort | uniq`
test_files=""
for source_name in $source_names; do
name=${source_name#*/}
type=${source_name%/*}
if [ $type == "datasource" ]; then
type=DataSource
fi
if [ $type == "resource" ]; then
type=Resource
fi
function_name=$(cat tencentcloud/provider.go | grep "\"${name}\"" | grep "${type}")
function_name=${function_name#*:}
function_name=$(echo $(echo ${function_name%,*}))
package=${function_name%.*}
function_name=${function_name#*.}
test_file=$(grep -r "func $function_name \*schema\.Resource" tencentcloud/services/$package)
test_file=${test_file%:*}
test_files="$test_files $test_file"
done
echo "test files:" $test_files
for test_file in $test_files; do
file_path=${test_file%/*}
test_file=${test_file##*/}
test_case_type=${test_file%_tc_*}
test_case_name=${test_file#*_tc_}
test_case_name=${test_case_name%.*}
test_case_type=`echo $test_case_type | sed -r 's/(^|_)(\w)/\U\2/g'`
test_case_name=`echo $test_case_name | sed -r 's/(^|_)(\w)/\U\2/g'`
go_test_cmd="go test -v -run TestAccTencentCloud${test_case_name}${test_case_type} -timeout=0 ./$file_path"
echo $go_test_cmd
$go_test_cmd
if [ $? -ne 0 ]; then
printf "[GO TEST FILED] ${go_test_cmd}"
exit 1
fi
done