summaryrefslogtreecommitdiffstats
path: root/.github/workflows/platform-api-integration-test.yml
blob: 11b4c9c5d40f1d44983698419df8d77c0509cf53 (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
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
115
name: API Integration Tests

on:
  workflow_dispatch:
  pull_request:
    branches:
      - release/*

concurrency:
  group: ${{ github.workflow }}-${{ github.ref }}
  cancel-in-progress: true

jobs:
  api-integration-tests:
    runs-on: ubuntu-latest
    env:
      SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
      OPENBB_API_AUTH: true
      OPENBB_API_USERNAME: "USER"
      OPENBB_API_PASSWORD: "PASS"

    steps:
      - name: Slack Notification - Starting
        uses: act10ns/slack@v1
        with:
          status: starting
          channel: "#workflows"
          message: Starting API Integration Test...
        if: always()

      - name: Checkout code
        uses: actions/checkout@v3

      - name: Checkout specific ref
        if: github.event_name == 'pull_request'
        run: git fetch origin ${{ github.event.pull_request.head.ref }} && git checkout FETCH_HEAD

      - name: Setup Python 3.10
        uses: actions/setup-python@v4
        with:
          python-version: "3.10"
          architecture: x64

      - name: Install Dependencies
        run: |
          python -m venv runner_env
          source runner_env/bin/activate
          pip install poetry toml
          python openbb_platform/dev_install.py -e

      - name: Populate System Setting Files
        run: |
          mkdir -p ~/.openbb_platform
          touch ~/.openbb_platform/system_settings.json
          echo '{"log_collect":false}' > ~/.openbb_platform/system_settings.json
          cat ~/.openbb_platform/system_settings.json

      - name: Create and Populate user_settings.json from GitHub Secrets
        run: |
          touch ~/.openbb_platform/user_settings.json
          echo '{
            "credentials": {
              "benzinga_api_key": "${{ secrets.BENZINGA_API_KEY }}",
              "fmp_api_key": "${{ secrets.FMP_API_KEY }}",
              "polygon_api_key": "${{ secrets.POLYGON_API_KEY }}",
              "alpha_vantage_api_key": "${{ secrets.ALPHA_VANTAGE_API_KEY }}",
              "fred_api_key": "${{ secrets.FRED_API_KEY }}",
              "intrinio_api_key": "${{ secrets.INTRINIO_API_KEY }}",
              "tradingeconomics_api_key": "${{ secrets.TRADINGECONOMICS_API_KEY }}",
              "quandl_api_key": "${{ secrets.QUANDL_API_KEY }}",
              "biztoc_api_key": "${{ secrets.BIZTOC_API_KEY }}",
              "nasdaq_api_key": "${{ secrets.NASDAQ_API_KEY }}",
              "tiingo_token": "${{ secrets.TIINGO_TOKEN }}"
            }
          }' > ~/.openbb_platform/user_settings.json

      - name: Build openbb
        run: |
          source runner_env/bin/activate
          python -c "import openbb; openbb.build()"

      - name: Launch the Uvicorn Process
        run: |
          source runner_env/bin/activate
          uvicorn openbb_core.api.rest_api:app --host 0.0.0.0 --port 8000 --reload &

      - name: Wait for 42 seconds
        run: sleep 42

      - name: Check installed packages
        run: |
          source runner_env/bin/activate
          pip list

      - name: Run Integration Tests
        run: |
          source runner_env/bin/activate
          pytest openbb_platform -m integration

      - name: Upload summary to Slack
        uses: adrey/slack-file-upload-action@master
        with:
          token: ${{ secrets.SLACK_API_TOKEN }}
          initial_comment: "API Integration test summary"
          title: "Integration test summary"
          path: summary.txt
          channel: ${{ secrets.SLACK_CHANNEL_ID }}

      - name: Slack Notification - Success/Failure
        uses: act10ns/slack@v1
        with:
          status: ${{ job.status }}
          steps: ${{ toJson(steps) }}
          channel: "#workflows"
        if: always()