aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorSamruddhi Khandale <skhandale@microsoft.com>2023-01-10 01:49:43 +0300
committerGitHub <noreply@github.com>2023-01-10 01:49:43 +0300
commit59fa3e3c21fd2c896da2d3272604509ea9a55a91 (patch)
tree3f5fa14326b0fbd514a195472615dce5f78656d6 /test
parent04143e31ff4ef64f44603492a4052fe7b03de7bd (diff)
Conda: Update 'certifi' due to CVE-2022-23491 (#383)
Diffstat (limited to 'test')
-rwxr-xr-xtest/conda/test.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/conda/test.sh b/test/conda/test.sh
index f300217..8a88511 100755
--- a/test/conda/test.sh
+++ b/test/conda/test.sh
@@ -12,5 +12,25 @@ check "if conda-notice.txt exists" cat /usr/local/etc/vscode-dev-containers/cond
# Check env
check "CONDA_SCRIPT is set correctly" echo $CONDA_SCRIPT | grep "/opt/conda/etc/profile.d/conda.sh"
+check-version-ge() {
+ LABEL=$1
+ CURRENT_VERSION=$2
+ REQUIRED_VERSION=$3
+ shift
+ echo -e "\n🧪 Testing $LABEL: '$CURRENT_VERSION' is >= '$REQUIRED_VERSION'"
+ local GREATER_VERSION=$((echo ${CURRENT_VERSION}; echo ${REQUIRED_VERSION}) | sort -V | tail -1)
+ if [ "${CURRENT_VERSION}" == "${GREATER_VERSION}" ]; then
+ echo "✅ Passed!"
+ return 0
+ else
+ echoStderr "❌ $LABEL check failed."
+ FAILED+=("$LABEL")
+ return 1
+ fi
+}
+
+certifiVersion=$(python -c "import certifi; print(certifi.__version__)")
+check-version-ge "certifi" "${certifiVersion}" "2022.12.07"
+
# Report result
reportResults