9da29144d1
technical_debt = technical_debt - 1 This function is now available from the subunit2sql 0.4.2 API, so lets use it and clean up this TODO. Change-Id: I5acf279b2e78dddaeb59489d01d92c00ee996f8d
51 lines
1.5 KiB
Python
Executable File
51 lines
1.5 KiB
Python
Executable File
#!/usr/bin/env python2
|
|
#
|
|
# Copyright 2014 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import os
|
|
import sys
|
|
|
|
from subunit2sql.db import api
|
|
from subunit2sql import shell
|
|
from subunit2sql import write_subunit
|
|
|
|
|
|
DB_URI = 'mysql+pymysql://query:query@logstash.openstack.org/subunit2sql'
|
|
|
|
if len(sys.argv) == 2:
|
|
TEMPEST_PATH = sys.argv[1]
|
|
elif len(sys.argv) > 2:
|
|
TEMPEST_PATH = sys.argv[1]
|
|
DB_URI = sys.argv[2]
|
|
else:
|
|
TEMPEST_PATH = '/opt/stack/new/tempest'
|
|
|
|
|
|
def main():
|
|
shell.parse_args([])
|
|
shell.CONF.set_override('connection', DB_URI, group='database')
|
|
session = api.get_session()
|
|
run_ids = api.get_recent_successful_runs(num_runs=10,
|
|
session=session)
|
|
session.close()
|
|
preseed_path = os.path.join(TEMPEST_PATH, 'preseed-streams')
|
|
os.mkdir(preseed_path)
|
|
for run in run_ids:
|
|
with open(os.path.join(preseed_path, run + '.subunit'), 'w') as fd:
|
|
write_subunit.sql2subunit(run, fd)
|
|
|
|
if __name__ == '__main__':
|
|
main()
|