VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/xmlvalidate.sh
blob: 79d52c16f1094c957d17908203b1ea2e568578fe (plain)
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
#!/bin/bash
fail=false

# Get all string keys
KEYS=$(grep -oP '<entry[\ ]+lang="[^"]+"[\ ]+key="\K[^"]+' "$1"/src/Common/Language.xml)

for file in {"$1"/Translations/Language.*.xml,"$1"/src/Common/Language.xml}; do
  echo "$file"
  passes=true
  
  # Validate xml
  output=$(fxparser -V "$file")
  returnvalue=$?

  if [ "$returnvalue" -ne "0" ]; then
    passes=false
    fail=true
    echo $output
  fi

  # Ensure each key found in common xml is found in translation xmls
  for key in $KEYS; do
    if ! grep -q "$key" "$file"; then
      echo "Key $key not found in $file"
      passes=false
      fail=true
    fi
  done
  
  if [ "$passes" = true ]; then
    echo -e "\e[32m$file passes xml validation.\e[0m"
  else
    echo -e "\e[31m$file fails xml validation.\e[0m"
  fi
  
done

if [ "$fail" = true ]; then
  exit 1
else
  exit 0
fi