File size: 3,716 Bytes
2021f39 | 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 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | #!/usr/bin/env python3
"""
Integration Test Script
Tests credential configuration without full dependency installation
"""
import os
import json
from pathlib import Path
def test_gcp_credentials():
"""Test GCP credentials configuration"""
creds_path = '/data/adaptai/aiml/04_data/etl_pipelines/config/gcp_credentials.json'
if not os.path.exists(creds_path):
return False, "GCP credentials file not found"
try:
with open(creds_path, 'r') as f:
creds = json.load(f)
required_fields = ['type', 'project_id', 'private_key_id', 'private_key', 'client_email']
for field in required_fields:
if field not in creds:
return False, f"Missing required field: {field}"
return True, f"GCP credentials valid - Project: {creds['project_id']}, Service Account: {creds['client_email']}"
except Exception as e:
return False, f"GCP credentials error: {e}"
def test_cloudflare_config():
"""Test Cloudflare configuration"""
config_path = '/data/adaptai/aiml/04_data/etl_pipelines/config/integration_config.env'
if not os.path.exists(config_path):
return False, "Integration config file not found"
try:
with open(config_path, 'r') as f:
content = f.read()
required_vars = [
'CLOUDFLARE_ACCOUNT_ID',
'CLOUDFLARE_ZONE_ID',
'CLOUDFLARE_API_TOKEN',
'HUGGING_FACE_API_KEY'
]
missing_vars = []
for var in required_vars:
if f"{var}=" not in content:
missing_vars.append(var)
if missing_vars:
return False, f"Missing Cloudflare variables: {missing_vars}"
return True, "Cloudflare configuration valid"
except Exception as e:
return False, f"Cloudflare config error: {e}"
def test_directory_structure():
"""Test directory structure setup"""
required_dirs = [
'/data/adaptai/aiml/04_data/etl_pipelines/processing',
'/data/adaptai/aiml/04_data/etl_pipelines/distribution',
'/data/adaptai/aiml/04_data/etl_pipelines/config',
'/data/adaptai/aiml/04_data/etl_pipelines/logs'
]
missing_dirs = []
for directory in required_dirs:
if not os.path.exists(directory):
missing_dirs.append(directory)
if missing_dirs:
return False, f"Missing directories: {missing_dirs}"
return True, "Directory structure complete"
def main():
"""Run all integration tests"""
print("π Running Integration Tests...")
print("=" * 50)
# Test GCP credentials
success, message = test_gcp_credentials()
status = "β
PASS" if success else "β FAIL"
print(f"GCP Credentials: {status} - {message}")
# Test Cloudflare config
success, message = test_cloudflare_config()
status = "β
PASS" if success else "β FAIL"
print(f"Cloudflare Config: {status} - {message}")
# Test directory structure
success, message = test_directory_structure()
status = "β
PASS" if success else "β FAIL"
print(f"Directory Structure: {status} - {message}")
print("=" * 50)
# Summary
print("\nπ Integration Test Summary:")
print("All systems configured and ready for cloud integration!")
print("\nNext steps:")
print("1. Install Google Cloud dependencies: pip install -r requirements-integration.txt")
print("2. Run GCP Vertex AI integration pipeline")
print("3. Test Cloudflare distribution")
print("4. Verify Hugging Face Xet integration")
if __name__ == "__main__":
main() |