From 28ef229584b4fd1a358298984f0d07cff2170c21 Mon Sep 17 00:00:00 2001 From: Luke Hinds Date: Tue, 16 Aug 2016 10:13:44 +0100 Subject: Merging Internet Connection check Issues were found with FDIO repo in Apex, so to prevent other connectivity issues from having an adverse effect on functest run times, this patch adds a check to insure the connection works correctly, but creating a socket connection to port 80 on google.com Change-Id: If6841ee81e19996d3640a4551b1fac2770401da8 Signed-off-by: Luke Hinds --- scripts/internet_check.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 scripts/internet_check.py (limited to 'scripts/internet_check.py') diff --git a/scripts/internet_check.py b/scripts/internet_check.py new file mode 100644 index 0000000..1bed50a --- /dev/null +++ b/scripts/internet_check.py @@ -0,0 +1,25 @@ +#!/usr/bin/python +# +# Copyright (c) 2016 Red Hat +# Luke Hinds (lhinds@redhat.com) +# This program and the accompanying materials +# are made available under the terms of the Apache License, Version 2.0 +# which accompanies this distribution, and is available at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Performs simple connection check, falls to default timeout of 10 seconds + +import socket + +TEST_HOST = "google.com" + + +def is_connected(): + try: + host = socket.gethostbyname(TEST_HOST) + socket.create_connection((host, 80), 2) + return True + except: + return False +print is_connected() -- cgit 1.2.3-korg