mirror of
https://github.com/marado/RNID.git
synced 2024-12-21 19:44:04 +00:00
scripts: act: added check and DEBUG
O script da ACT falhou algumas vezes (e ainda nunca funcionou bem) a tentar identificar o problema, quando corrido através das github actions. Esta alteração aumenta a qualidade da validação, verificando que o conteúdo descarregado não está vazio antes de tentar encontrar problemas nele. Se estiver vazio, então mostra o output do wget, para debug (pode ser que ajude a entender o que muda entre o pedido feito localmente e feito no ambiente em que a Github Action é executada).
This commit is contained in:
parent
a9c3344c30
commit
486cefa8ec
@ -1,7 +1,15 @@
|
||||
#!/bin/bash
|
||||
|
||||
# While we don't have a validator on request, let's find out if a known violation still exists
|
||||
if [ "$(wget -t 1 --no-check-certificate http://www.act.gov.pt/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O - | grep -i "<img" |grep -v -i alt|wc -l)" -eq "0" ]; then
|
||||
content=$(wget -t 1 --no-check-certificate http://www.act.gov.pt/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0" -o /dev/null -O -);
|
||||
if [ "$( echo "$content" | wc -l )" -eq "0" ]; then
|
||||
echo "act: página vazia! Pode ser problema no site, ou no script.";
|
||||
echo "DEBUG: ";
|
||||
wget -t 1 --no-check-certificate http://www.act.gov.pt/ --user-agent="Mozilla/5.0 Gecko/20100101 Firefox/21.0";
|
||||
rm index.html;
|
||||
fi
|
||||
|
||||
if [ "$( echo "$content" | grep -i "<img" |grep -v -i alt|wc -l)" -eq "0" ]; then
|
||||
echo "act: incumprimento pode já não existir";
|
||||
# TODO: verificar também se o problema com o certiicado ja' esta' resolvido
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user