blob: 1055810ca33ede0301af3e1140552bb7f5d9bf9c [file] [log] [blame]
Brad Bishopc342db32019-05-15 21:57:59 -04001#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05002# Copyright (C) 2013 Intel Corporation
3#
Brad Bishopc342db32019-05-15 21:57:59 -04004# SPDX-License-Identifier: MIT
5#
Patrick Williamsc124f4f2015-09-15 14:41:29 -05006
7# Provides a class for automating build tests for projects
8
9import os
10import re
11import bb.utils
12import subprocess
Brad Bishop6e60e8b2018-02-01 10:27:11 -050013import tempfile
Patrick Williamsc124f4f2015-09-15 14:41:29 -050014from abc import ABCMeta, abstractmethod
15
Patrick Williamsc0f7c042017-02-23 20:41:17 -060016class BuildProject(metaclass=ABCMeta):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050017
Brad Bishop6e60e8b2018-02-01 10:27:11 -050018 def __init__(self, d, uri, foldername=None, tmpdir=None):
Patrick Williamsc124f4f2015-09-15 14:41:29 -050019 self.d = d
20 self.uri = uri
21 self.archive = os.path.basename(uri)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050022 if not tmpdir:
23 tmpdir = self.d.getVar('WORKDIR')
24 if not tmpdir:
Brad Bishopf86d0552018-12-04 14:18:15 -080025 self.tempdirobj = tempfile.TemporaryDirectory(prefix='buildproject-')
26 tmpdir = self.tempdirobj.name
27 self.localarchive = os.path.join(tmpdir, self.archive)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050028 if foldername:
29 self.fname = foldername
Patrick Williamsc0f7c042017-02-23 20:41:17 -060030 else:
31 self.fname = re.sub(r'\.tar\.bz2$|\.tar\.gz$|\.tar\.xz$', '', self.archive)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050032
33 # Download self.archive to self.localarchive
34 def _download_archive(self):
Brad Bishop6e60e8b2018-02-01 10:27:11 -050035 dl_dir = self.d.getVar("DL_DIR")
Patrick Williamsc124f4f2015-09-15 14:41:29 -050036 if dl_dir and os.path.exists(os.path.join(dl_dir, self.archive)):
37 bb.utils.copyfile(os.path.join(dl_dir, self.archive), self.localarchive)
38 return
39
40 exportvars = ['HTTP_PROXY', 'http_proxy',
41 'HTTPS_PROXY', 'https_proxy',
42 'FTP_PROXY', 'ftp_proxy',
43 'FTPS_PROXY', 'ftps_proxy',
44 'NO_PROXY', 'no_proxy',
45 'ALL_PROXY', 'all_proxy',
46 'SOCKS5_USER', 'SOCKS5_PASSWD']
47
48 cmd = ''
49 for var in exportvars:
Brad Bishop6e60e8b2018-02-01 10:27:11 -050050 val = self.d.getVar(var)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050051 if val:
52 cmd = 'export ' + var + '=\"%s\"; %s' % (val, cmd)
53
54 cmd = cmd + "wget -O %s %s" % (self.localarchive, self.uri)
Brad Bishop6e60e8b2018-02-01 10:27:11 -050055 subprocess.check_output(cmd, shell=True)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050056
57 # This method should provide a way to run a command in the desired environment.
58 @abstractmethod
59 def _run(self, cmd):
60 pass
61
62 # The timeout parameter of target.run is set to 0 to make the ssh command
63 # run with no timeout.
64 def run_configure(self, configure_args='', extra_cmds=''):
65 return self._run('cd %s; %s ./configure %s' % (self.targetdir, extra_cmds, configure_args))
66
67 def run_make(self, make_args=''):
68 return self._run('cd %s; make %s' % (self.targetdir, make_args))
69
70 def run_install(self, install_args=''):
71 return self._run('cd %s; make install %s' % (self.targetdir, install_args))
72
73 def clean(self):
74 self._run('rm -rf %s' % self.targetdir)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050075 subprocess.check_call('rm -f %s' % self.localarchive, shell=True)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050076 pass
77
78class TargetBuildProject(BuildProject):
79
80 def __init__(self, target, d, uri, foldername=None):
81 self.target = target
82 self.targetdir = "~/"
Brad Bishop6e60e8b2018-02-01 10:27:11 -050083 BuildProject.__init__(self, d, uri, foldername)
Patrick Williamsc124f4f2015-09-15 14:41:29 -050084
85 def download_archive(self):
86
87 self._download_archive()
88
89 (status, output) = self.target.copy_to(self.localarchive, self.targetdir)
90 if status != 0:
91 raise Exception("Failed to copy archive to target, output: %s" % output)
92
93 (status, output) = self.target.run('tar xf %s%s -C %s' % (self.targetdir, self.archive, self.targetdir))
94 if status != 0:
95 raise Exception("Failed to extract archive, output: %s" % output)
96
97 #Change targetdir to project folder
98 self.targetdir = self.targetdir + self.fname
99
100 # The timeout parameter of target.run is set to 0 to make the ssh command
101 # run with no timeout.
102 def _run(self, cmd):
103 return self.target.run(cmd, 0)[0]
104
105
106class SDKBuildProject(BuildProject):
107
108 def __init__(self, testpath, sdkenv, d, uri, foldername=None):
109 self.sdkenv = sdkenv
110 self.testdir = testpath
111 self.targetdir = testpath
112 bb.utils.mkdirhier(testpath)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500113 self.datetime = d.getVar('DATETIME')
114 self.testlogdir = d.getVar("TEST_LOG_DIR")
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500115 bb.utils.mkdirhier(self.testlogdir)
116 self.logfile = os.path.join(self.testlogdir, "sdk_target_log.%s" % self.datetime)
117 BuildProject.__init__(self, d, uri, foldername, tmpdir=testpath)
118
119 def download_archive(self):
120
121 self._download_archive()
122
123 cmd = 'tar xf %s%s -C %s' % (self.targetdir, self.archive, self.targetdir)
Brad Bishop6e60e8b2018-02-01 10:27:11 -0500124 subprocess.check_output(cmd, shell=True)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500125
126 #Change targetdir to project folder
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600127 self.targetdir = os.path.join(self.targetdir, self.fname)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500128
Patrick Williamsc0f7c042017-02-23 20:41:17 -0600129 def run_configure(self, configure_args='', extra_cmds=' gnu-configize; '):
130 return super(SDKBuildProject, self).run_configure(configure_args=(configure_args or '$CONFIGURE_FLAGS'), extra_cmds=extra_cmds)
Patrick Williamsc124f4f2015-09-15 14:41:29 -0500131
132 def run_install(self, install_args=''):
133 return super(SDKBuildProject, self).run_install(install_args=(install_args or "DESTDIR=%s/../install" % self.targetdir))
134
135 def log(self, msg):
136 if self.logfile:
137 with open(self.logfile, "a") as f:
138 f.write("%s\n" % msg)
139
140 def _run(self, cmd):
141 self.log("Running . %s; " % self.sdkenv + cmd)
Brad Bishopd7bf8c12018-02-25 22:55:05 -0500142 return subprocess.check_call(". %s; " % self.sdkenv + cmd, shell=True)