2019-04-17 03:30:30 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
2023-12-08 10:36:05 -05:00
|
|
|
# SPDX-FileCopyrightText: 2019-2024 Espressif Systems (Shanghai) CO LTD
|
2021-09-09 03:01:14 -04:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
2021-12-21 11:06:05 -05:00
|
|
|
import json
|
2019-04-17 03:30:30 -04:00
|
|
|
import os
|
2022-03-30 02:11:18 -04:00
|
|
|
import re
|
2021-01-25 21:49:01 -05:00
|
|
|
import shutil
|
2019-04-17 03:30:30 -04:00
|
|
|
import sys
|
|
|
|
import tempfile
|
2021-01-25 21:49:01 -05:00
|
|
|
import unittest
|
2023-12-18 08:01:27 -05:00
|
|
|
from unittest.mock import patch
|
2019-04-17 03:30:30 -04:00
|
|
|
|
|
|
|
try:
|
|
|
|
from contextlib import redirect_stdout
|
|
|
|
except ImportError:
|
|
|
|
import contextlib
|
|
|
|
|
2021-06-03 01:09:52 -04:00
|
|
|
@contextlib.contextmanager # type: ignore
|
2019-04-17 03:30:30 -04:00
|
|
|
def redirect_stdout(target):
|
|
|
|
original = sys.stdout
|
|
|
|
sys.stdout = target
|
|
|
|
yield
|
|
|
|
sys.stdout = original
|
|
|
|
|
|
|
|
try:
|
|
|
|
from cStringIO import StringIO
|
|
|
|
except ImportError:
|
|
|
|
from io import StringIO
|
|
|
|
|
|
|
|
# Need to do this before importing idf_tools.py
|
|
|
|
os.environ['IDF_MAINTAINER'] = '1'
|
|
|
|
|
|
|
|
try:
|
|
|
|
import idf_tools
|
|
|
|
except ImportError:
|
|
|
|
sys.path.append('..')
|
|
|
|
import idf_tools
|
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
ESP32ULP = 'esp32ulp-elf'
|
|
|
|
OPENOCD = 'openocd-esp32'
|
2021-07-27 06:19:16 -04:00
|
|
|
RISCV_ELF = 'riscv32-esp-elf'
|
2023-07-12 04:28:58 -04:00
|
|
|
XTENSA_ELF = 'xtensa-esp-elf'
|
2022-02-10 03:25:58 -05:00
|
|
|
XTENSA_ESP_GDB = 'xtensa-esp-elf-gdb'
|
|
|
|
RISCV_ESP_GDB = 'riscv32-esp-elf-gdb'
|
2022-08-15 10:47:24 -04:00
|
|
|
ESP_ROM_ELFS = 'esp-rom-elfs'
|
2023-09-14 01:55:24 -04:00
|
|
|
QEMU_RISCV = 'qemu-riscv32'
|
|
|
|
QEMU_XTENSA = 'qemu-xtensa'
|
2023-12-08 10:36:05 -05:00
|
|
|
# Win tools
|
|
|
|
CMAKE = 'cmake'
|
|
|
|
NINJA = 'ninja'
|
|
|
|
IDF_EXE = 'idf-exe'
|
|
|
|
CCACHE = 'ccache'
|
|
|
|
DFU_UTIL = 'dfu-util'
|
2021-04-26 15:34:48 -04:00
|
|
|
|
2021-12-21 11:06:05 -05:00
|
|
|
|
|
|
|
def get_version_dict():
|
|
|
|
'''
|
|
|
|
Return a dictionary with tool name to tool version mapping.
|
|
|
|
|
|
|
|
It works with tools.json directly and not through idf_tools.py in order to bypass the script under test. This is
|
|
|
|
a little hacky but thanks to this, versions are not required to be updated here every time a tool is updated.
|
|
|
|
'''
|
|
|
|
with open(os.path.join(os.path.dirname(os.path.abspath(__file__)), '..', 'tools.json')) as f:
|
|
|
|
tools_obj = json.loads(f.read())
|
|
|
|
|
|
|
|
return dict((tool['name'], tool['versions'][0]['name']) for tool in tools_obj['tools'])
|
|
|
|
|
|
|
|
|
|
|
|
version_dict = get_version_dict()
|
|
|
|
|
|
|
|
ESP32ULP_VERSION = version_dict[ESP32ULP]
|
|
|
|
OPENOCD_VERSION = version_dict[OPENOCD]
|
|
|
|
RISCV_ELF_VERSION = version_dict[RISCV_ELF]
|
2023-07-12 04:28:58 -04:00
|
|
|
XTENSA_ELF_VERSION = version_dict[XTENSA_ELF]
|
2022-02-10 03:25:58 -05:00
|
|
|
XTENSA_ESP_GDB_VERSION = version_dict[XTENSA_ESP_GDB]
|
|
|
|
RISCV_ESP_GDB_VERSION = version_dict[RISCV_ESP_GDB]
|
2022-08-15 10:47:24 -04:00
|
|
|
ESP_ROM_ELFS_VERSION = version_dict[ESP_ROM_ELFS]
|
2023-09-14 01:55:24 -04:00
|
|
|
QEMU_RISCV_VERSION = version_dict[QEMU_RISCV]
|
|
|
|
QEMU_XTENSA_VERSION = version_dict[QEMU_XTENSA]
|
2023-12-08 10:36:05 -05:00
|
|
|
# Win tools
|
|
|
|
CMAKE_VERSION = version_dict[CMAKE]
|
|
|
|
NINJA_VERSION = version_dict[NINJA]
|
|
|
|
IDF_EXE_VERSION = version_dict[IDF_EXE]
|
|
|
|
CCACHE_VERSION = version_dict[CCACHE]
|
|
|
|
DFU_UTIL_VERSION = version_dict[DFU_UTIL]
|
2023-09-14 01:55:24 -04:00
|
|
|
|
|
|
|
# There are some complex search patterns to detect download snippets
|
|
|
|
|
|
|
|
# Avoiding an ambiguity with a substring 'riscv32-esp-elf' in the `riscv32-esp-elf-gdb`
|
|
|
|
# (removing esp- prefix from version)
|
|
|
|
RISCV_ELF_ARCHIVE_PATTERN = RISCV_ELF + '-' \
|
|
|
|
+ (RISCV_ELF_VERSION[len('esp-'):] if RISCV_ELF_VERSION.startswith('esp-') else RISCV_ELF_VERSION)
|
|
|
|
|
|
|
|
# The same like above
|
|
|
|
XTENSA_ELF_ARCHIVE_PATTERN = XTENSA_ELF + '-' \
|
|
|
|
+ (XTENSA_ELF_VERSION[len('esp-'):] if XTENSA_ELF_VERSION.startswith('esp-') else XTENSA_ELF_VERSION)
|
|
|
|
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
# TestUsage takes care of general test setup and executes tests that behaves the same on both platforms
|
|
|
|
# TestUsage class serves as a parent for classes TestUsageUnix and TestUsageWin
|
2019-04-17 03:30:30 -04:00
|
|
|
class TestUsage(unittest.TestCase):
|
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
2023-12-02 00:38:51 -05:00
|
|
|
with open(os.path.join(os.getenv('IDF_PATH'), 'tools/tools.json'), 'r') as json_file:
|
|
|
|
tools_dict = json.load(json_file)
|
|
|
|
cls.tools_dict = tools_dict
|
|
|
|
|
2019-04-17 03:30:30 -04:00
|
|
|
old_tools_dir = os.environ.get('IDF_TOOLS_PATH') or os.path.expanduser(idf_tools.IDF_TOOLS_PATH_DEFAULT)
|
|
|
|
|
|
|
|
mirror_prefix_map = None
|
|
|
|
if os.path.exists(old_tools_dir):
|
2023-12-08 10:36:05 -05:00
|
|
|
mirror_prefix_map = 'https://dl.espressif.com/dl/toolchains/preview,file:' + os.path.join(old_tools_dir,
|
|
|
|
'dist')
|
|
|
|
mirror_prefix_map += ';https://dl.espressif.com/dl,file:' + os.path.join(old_tools_dir, 'dist')
|
|
|
|
mirror_prefix_map += ';https://github.com/espressif/.*/releases/download/.*/,file:' + os.path.join(
|
2021-07-27 06:19:16 -04:00
|
|
|
old_tools_dir, 'dist', '')
|
2019-04-17 03:30:30 -04:00
|
|
|
if mirror_prefix_map:
|
|
|
|
print('Using IDF_MIRROR_PREFIX_MAP={}'.format(mirror_prefix_map))
|
|
|
|
os.environ['IDF_MIRROR_PREFIX_MAP'] = mirror_prefix_map
|
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
cls.temp_tools_dir = tempfile.mkdtemp(prefix='idf_tools_tmp')
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
print('Using IDF_TOOLS_PATH={}'.format(cls.temp_tools_dir))
|
|
|
|
os.environ['IDF_TOOLS_PATH'] = cls.temp_tools_dir
|
2021-12-13 10:45:11 -05:00
|
|
|
cls.idf_env_json = os.path.join(cls.temp_tools_dir, 'idf-env.json')
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
@classmethod
|
|
|
|
def tearDownClass(cls):
|
|
|
|
shutil.rmtree(cls.temp_tools_dir)
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
def tearDown(self):
|
|
|
|
if os.path.isdir(os.path.join(self.temp_tools_dir, 'dist')):
|
|
|
|
shutil.rmtree(os.path.join(self.temp_tools_dir, 'dist'))
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
if os.path.isdir(os.path.join(self.temp_tools_dir, 'tools')):
|
|
|
|
shutil.rmtree(os.path.join(self.temp_tools_dir, 'tools'))
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-12-13 10:45:11 -05:00
|
|
|
if os.path.isfile(self.idf_env_json):
|
|
|
|
os.remove(self.idf_env_json)
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-07-27 06:19:16 -04:00
|
|
|
def assert_tool_installed(self, output, tool, tool_version, tool_archive_name=None):
|
|
|
|
if tool_archive_name is None:
|
|
|
|
tool_archive_name = tool
|
|
|
|
self.assertIn('Installing %s@' % tool + tool_version, output)
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assertRegex(output, re.compile(rf'Downloading \S+{tool_archive_name}'))
|
2021-07-27 06:19:16 -04:00
|
|
|
|
|
|
|
def assert_tool_not_installed(self, output, tool, tool_version, tool_archive_name=None):
|
|
|
|
if tool_archive_name is None:
|
|
|
|
tool_archive_name = tool
|
|
|
|
self.assertNotIn('Installing %s@' % tool + tool_version, output)
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assertNotRegex(output, re.compile(rf'Downloading \S+{tool_archive_name}'))
|
2021-07-27 06:19:16 -04:00
|
|
|
|
|
|
|
def run_idf_tools_with_action(self, action):
|
2019-04-17 03:30:30 -04:00
|
|
|
output_stream = StringIO()
|
|
|
|
with redirect_stdout(output_stream):
|
2021-07-27 06:19:16 -04:00
|
|
|
idf_tools.main(['--non-interactive'] + action)
|
2019-04-17 03:30:30 -04:00
|
|
|
output = output_stream.getvalue()
|
2021-04-26 15:34:48 -04:00
|
|
|
return output
|
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
def test_tools_for_wildcards1(self):
|
|
|
|
required_tools_installed = 2
|
|
|
|
output = self.run_idf_tools_with_action(['install', '*gdb*'])
|
|
|
|
self.assert_tool_not_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ELF, RISCV_ELF_VERSION,RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
|
|
|
|
|
|
|
def test_tools_for_wildcards2(self):
|
|
|
|
required_tools_installed = 1
|
|
|
|
output = self.run_idf_tools_with_action(['install', '*gdb*', '--targets=esp32c3'])
|
|
|
|
self.assert_tool_not_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
|
|
|
|
|
|
|
def test_tools_for_wildcards3(self):
|
|
|
|
required_tools_installed = 1
|
|
|
|
output = self.run_idf_tools_with_action(['install', '*gdb*', '--targets=esp32s3'])
|
|
|
|
self.assert_tool_not_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
|
|
|
|
|
|
|
def test_uninstall_option(self):
|
|
|
|
self.run_idf_tools_with_action(['install', '--targets=esp32'])
|
|
|
|
test_tool_name = XTENSA_ELF
|
|
|
|
test_tool_version = 'test_version'
|
|
|
|
tools_json_new = os.path.join(self.temp_tools_dir, 'tools', 'tools.new.json')
|
|
|
|
self.run_idf_tools_with_action(
|
|
|
|
[
|
|
|
|
'add-version',
|
|
|
|
'--tool',
|
|
|
|
test_tool_name,
|
|
|
|
'--url-prefix',
|
|
|
|
'http://test.com',
|
|
|
|
'--version',
|
|
|
|
test_tool_version,
|
|
|
|
'--override',
|
|
|
|
'--checksum-file',
|
|
|
|
'add_version/checksum.sha256',
|
|
|
|
'--output',
|
|
|
|
tools_json_new
|
|
|
|
])
|
|
|
|
output = self.run_idf_tools_with_action(['--tools-json', tools_json_new, 'uninstall', '--dry-run'])
|
|
|
|
self.assertIn('For removing old versions of ' + test_tool_name, output)
|
|
|
|
output = self.run_idf_tools_with_action(['--tools-json', tools_json_new, 'uninstall'])
|
|
|
|
self.assertIn(os.path.join(self.temp_tools_dir, 'tools', test_tool_name, XTENSA_ELF_VERSION) + ' was removed.', output)
|
|
|
|
output = self.run_idf_tools_with_action(['uninstall'])
|
|
|
|
self.assertEqual('', output)
|
|
|
|
|
|
|
|
def test_deactivate(self):
|
|
|
|
self.run_idf_tools_with_action(['install'])
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
self.assertIn('export IDF_DEACTIVATE_FILE_PATH=', output, 'No IDF_DEACTIVATE_FILE_PATH exported into environment')
|
|
|
|
deactivate_file = re.findall(r'(?:IDF_DEACTIVATE_FILE_PATH=")(.*)(?:")', output)[0]
|
|
|
|
self.assertTrue(os.path.isfile(deactivate_file), 'File {} was not found. '.format(deactivate_file))
|
|
|
|
self.assertNotEqual(os.stat(self.idf_env_json).st_size, 0, 'File {} is empty. '.format(deactivate_file))
|
|
|
|
|
|
|
|
def test_export_recommended_version(self):
|
|
|
|
always_install_and_recommended_tools = []
|
|
|
|
for tool in self.tools_dict['tools']:
|
|
|
|
if tool['install'] != 'always':
|
|
|
|
continue
|
|
|
|
for version in tool['versions']:
|
|
|
|
if version['status'] != 'recommended':
|
|
|
|
continue
|
|
|
|
always_install_and_recommended_tools.append({
|
|
|
|
'name': tool['name'],
|
|
|
|
'version': version['name']
|
|
|
|
})
|
|
|
|
self.run_idf_tools_with_action(['install'])
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
|
|
|
|
for tool in always_install_and_recommended_tools:
|
|
|
|
self.assertIn(os.path.join(tool['name'], tool['version']), output)
|
|
|
|
|
|
|
|
def test_export_recommended_version_cmake(self):
|
|
|
|
tool_to_test = 'cmake'
|
|
|
|
tool_version = ''
|
|
|
|
for tool in self.tools_dict['tools']:
|
|
|
|
if tool['name'] != tool_to_test:
|
|
|
|
continue
|
|
|
|
for version in tool['versions']:
|
|
|
|
if version['status'] == 'recommended':
|
|
|
|
tool_version = version['name']
|
|
|
|
break
|
|
|
|
|
|
|
|
self.run_idf_tools_with_action(['install'])
|
|
|
|
self.run_idf_tools_with_action(['install', tool_to_test])
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
|
|
|
|
self.assertIn(os.path.join(tool_to_test, tool_version), output)
|
|
|
|
|
|
|
|
def test_export_prefer_system_cmake(self):
|
|
|
|
tool_to_test = 'cmake'
|
|
|
|
self.run_idf_tools_with_action(['install'])
|
|
|
|
self.run_idf_tools_with_action(['install', tool_to_test])
|
|
|
|
# cmake is installed via apt
|
|
|
|
output = self.run_idf_tools_with_action(['export', '--prefer-system'])
|
|
|
|
|
|
|
|
self.assertNotIn(tool_to_test, output)
|
|
|
|
|
|
|
|
|
|
|
|
# TestUsageUnix tests installed tools on UNIX platforms
|
|
|
|
@unittest.skipIf(sys.platform == 'win32', reason='Tools for UNIX differ')
|
|
|
|
class TestUsageUnix(TestUsage):
|
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
def test_usage_basic(self):
|
|
|
|
output = self.run_idf_tools_with_action(['list'])
|
|
|
|
self.assertIn('* %s:' % ESP32ULP, output)
|
|
|
|
self.assertIn('- %s (recommended)' % ESP32ULP_VERSION, output)
|
|
|
|
self.assertIn('* %s:' % OPENOCD, output)
|
|
|
|
self.assertIn('- %s (recommended)' % OPENOCD_VERSION, output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertIn('* %s:' % RISCV_ELF, output)
|
|
|
|
self.assertIn('- %s (recommended)' % RISCV_ELF_VERSION, output)
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertIn('* %s:' % XTENSA_ELF, output)
|
|
|
|
self.assertIn('- %s (recommended)' % XTENSA_ELF_VERSION, output)
|
|
|
|
|
|
|
|
required_tools_installed = 7
|
2021-04-26 15:34:48 -04:00
|
|
|
output = self.run_idf_tools_with_action(['install'])
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
2022-03-30 02:11:18 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
2023-12-08 10:36:05 -05:00
|
|
|
for tool_version in [ESP32ULP_VERSION, OPENOCD_VERSION, RISCV_ELF_VERSION, XTENSA_ELF_VERSION,
|
|
|
|
XTENSA_ESP_GDB_VERSION, RISCV_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf/bin' %
|
2021-04-26 15:34:48 -04:00
|
|
|
(self.temp_tools_dir, ESP32ULP_VERSION), output)
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf/%s/xtensa-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ELF_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
|
|
|
|
(self.temp_tools_dir, OPENOCD_VERSION), output)
|
|
|
|
self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
|
2021-07-27 06:19:16 -04:00
|
|
|
(self.temp_tools_dir, RISCV_ELF_VERSION), output)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf-gdb/%s/xtensa-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ESP_GDB_VERSION), output)
|
|
|
|
self.assertIn('%s/tools/riscv32-esp-elf-gdb/%s/riscv32-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, RISCV_ESP_GDB_VERSION), output)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assertIn('%s/tools/esp-rom-elfs/%s/' %
|
|
|
|
(self.temp_tools_dir, ESP_ROM_ELFS_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
2023-02-05 10:29:03 -05:00
|
|
|
output = self.run_idf_tools_with_action(['list', '--outdated'])
|
|
|
|
self.assertEqual('', output)
|
|
|
|
|
|
|
|
tools_json_outdated = os.path.join(self.temp_tools_dir, 'tools', 'tools.outdated.json')
|
|
|
|
new_version = 'zzzzzz'
|
|
|
|
self.run_idf_tools_with_action(
|
|
|
|
[
|
|
|
|
'add-version',
|
|
|
|
'--tool',
|
2023-07-12 04:28:58 -04:00
|
|
|
XTENSA_ELF,
|
2023-02-05 10:29:03 -05:00
|
|
|
'--url-prefix',
|
|
|
|
'http://test.com',
|
|
|
|
'--version',
|
|
|
|
new_version,
|
|
|
|
'--override',
|
|
|
|
'--checksum-file',
|
|
|
|
'add_version/checksum.sha256',
|
|
|
|
'--output',
|
|
|
|
tools_json_outdated
|
|
|
|
])
|
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(
|
|
|
|
[
|
|
|
|
'--tools-json',
|
|
|
|
tools_json_outdated,
|
|
|
|
'list',
|
|
|
|
'--outdated'
|
|
|
|
])
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertIn((f'{XTENSA_ELF}: version {XTENSA_ELF_VERSION} '
|
2023-02-05 10:29:03 -05:00
|
|
|
f'is outdated by {new_version}'), output)
|
|
|
|
|
2021-04-26 15:34:48 -04:00
|
|
|
def test_tools_for_esp32(self):
|
2022-08-15 10:47:24 -04:00
|
|
|
required_tools_installed = 5
|
2021-04-26 15:34:48 -04:00
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32'])
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_not_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
2022-03-30 02:11:18 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
2023-12-08 10:36:05 -05:00
|
|
|
for tool_version in [ESP32ULP_VERSION, OPENOCD_VERSION, XTENSA_ELF_VERSION,
|
|
|
|
XTENSA_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf/bin' %
|
2021-04-26 15:34:48 -04:00
|
|
|
(self.temp_tools_dir, ESP32ULP_VERSION), output)
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf/%s/xtensa-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ELF_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
|
|
|
|
(self.temp_tools_dir, OPENOCD_VERSION), output)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf-gdb/%s/xtensa-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ESP_GDB_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
self.assertNotIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
|
2021-07-27 06:19:16 -04:00
|
|
|
(self.temp_tools_dir, RISCV_ELF_VERSION), output)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assertNotIn('%s/tools/riscv32-esp-elf-gdb/%s/riscv32-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, RISCV_ESP_GDB_VERSION), output)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assertIn('%s/tools/esp-rom-elfs/%s/' %
|
|
|
|
(self.temp_tools_dir, ESP_ROM_ELFS_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
def test_tools_for_esp32c3(self):
|
2022-08-15 10:47:24 -04:00
|
|
|
required_tools_installed = 4
|
2021-04-26 15:34:48 -04:00
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32c3'])
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_not_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assert_tool_not_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
2022-03-30 02:11:18 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
2023-12-08 10:36:05 -05:00
|
|
|
for tool_version in [OPENOCD_VERSION, RISCV_ELF_VERSION, RISCV_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
|
|
|
|
(self.temp_tools_dir, OPENOCD_VERSION), output)
|
|
|
|
self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
|
2021-07-27 06:19:16 -04:00
|
|
|
(self.temp_tools_dir, RISCV_ELF_VERSION), output)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assertNotIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf/bin' %
|
2021-04-26 15:34:48 -04:00
|
|
|
(self.temp_tools_dir, ESP32ULP_VERSION), output)
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertNotIn('%s/tools/xtensa-esp-elf/%s/xtensa-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ELF_VERSION), output)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assertNotIn('%s/tools/xtensa-esp-elf-gdb/%s/xtensa-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ESP_GDB_VERSION), output)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assertIn('%s/tools/esp-rom-elfs/%s/' %
|
|
|
|
(self.temp_tools_dir, ESP_ROM_ELFS_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
def test_tools_for_esp32s2(self):
|
2022-08-15 10:47:24 -04:00
|
|
|
required_tools_installed = 6
|
2021-04-26 15:34:48 -04:00
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32s2'])
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
2022-03-30 02:11:18 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
2023-12-08 10:36:05 -05:00
|
|
|
for tool_version in [OPENOCD_VERSION, XTENSA_ELF_VERSION, XTENSA_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf/%s/xtensa-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ELF_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
|
|
|
|
(self.temp_tools_dir, OPENOCD_VERSION), output)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, ESP32ULP_VERSION), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, RISCV_ELF_VERSION), output)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf-gdb/%s/xtensa-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ESP_GDB_VERSION), output)
|
|
|
|
self.assertNotIn('%s/tools/riscv32-esp-elf-gdb/%s/riscv32-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, RISCV_ESP_GDB_VERSION), output)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assertIn('%s/tools/esp-rom-elfs/%s/' %
|
|
|
|
(self.temp_tools_dir, ESP_ROM_ELFS_VERSION), output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
def test_tools_for_esp32s3(self):
|
2022-08-15 10:47:24 -04:00
|
|
|
required_tools_installed = 6
|
2021-04-26 15:34:48 -04:00
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32s3'])
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
2022-03-30 02:11:18 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
2023-12-08 10:36:05 -05:00
|
|
|
for tool_version in [OPENOCD_VERSION, XTENSA_ELF_VERSION, XTENSA_ESP_GDB_VERSION,
|
|
|
|
RISCV_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2021-04-26 15:34:48 -04:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
|
|
|
|
(self.temp_tools_dir, OPENOCD_VERSION), output)
|
2023-07-12 04:28:58 -04:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf/%s/xtensa-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ELF_VERSION), output)
|
2022-08-29 14:01:20 -04:00
|
|
|
self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, ESP32ULP_VERSION), output)
|
2021-07-27 06:19:16 -04:00
|
|
|
self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
|
|
|
|
(self.temp_tools_dir, RISCV_ELF_VERSION), output)
|
2022-02-10 03:25:58 -05:00
|
|
|
self.assertIn('%s/tools/xtensa-esp-elf-gdb/%s/xtensa-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, XTENSA_ESP_GDB_VERSION), output)
|
|
|
|
self.assertNotIn('%s/tools/riscv32-esp-elf-gdb/%s/riscv32-esp-elf-gdb/bin' %
|
|
|
|
(self.temp_tools_dir, RISCV_ESP_GDB_VERSION), output)
|
2022-08-15 10:47:24 -04:00
|
|
|
self.assertIn('%s/tools/esp-rom-elfs/%s/' %
|
|
|
|
(self.temp_tools_dir, ESP_ROM_ELFS_VERSION), output)
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2023-09-14 01:55:24 -04:00
|
|
|
# a different test for qemu because of "on_request"
|
|
|
|
def test_tools_for_qemu_with_required(self):
|
|
|
|
required_tools_installed = 9
|
|
|
|
output = self.run_idf_tools_with_action(['install', 'required', 'qemu-xtensa', 'qemu-riscv32'])
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
2023-12-05 21:54:06 -05:00
|
|
|
self.assert_tool_installed(output, QEMU_RISCV, QEMU_RISCV_VERSION)
|
|
|
|
self.assert_tool_installed(output, QEMU_XTENSA, QEMU_XTENSA_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
def test_export_supported_version_cmake(self):
|
|
|
|
tool_to_test = 'cmake'
|
|
|
|
self.run_idf_tools_with_action(['install'])
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
2023-09-14 01:55:24 -04:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assertNotIn(tool_to_test, output)
|
2023-09-14 01:55:24 -04:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
|
|
|
|
# TestUsageWin tests installed tools on Windows platforms
|
|
|
|
@unittest.skipIf(sys.platform != 'win32', reason='Tools for WIN differ')
|
|
|
|
class TestUsageWin(TestUsage):
|
|
|
|
|
|
|
|
def test_usage_basic_win(self):
|
|
|
|
output = self.run_idf_tools_with_action(['list'])
|
|
|
|
self.assertIn('* %s:' % ESP32ULP, output)
|
|
|
|
self.assertIn('- %s (recommended)' % ESP32ULP_VERSION, output)
|
|
|
|
self.assertIn('* %s:' % OPENOCD, output)
|
|
|
|
self.assertIn('- %s (recommended)' % OPENOCD_VERSION, output)
|
|
|
|
self.assertIn('* %s:' % RISCV_ELF, output)
|
|
|
|
self.assertIn('- %s (recommended)' % RISCV_ELF_VERSION, output)
|
|
|
|
self.assertIn('* %s:' % XTENSA_ELF, output)
|
|
|
|
self.assertIn('- %s (recommended)' % XTENSA_ELF_VERSION, output)
|
|
|
|
|
|
|
|
required_tools_installed = 12
|
|
|
|
output = self.run_idf_tools_with_action(['install'])
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assert_tool_installed(output, CMAKE, CMAKE_VERSION)
|
|
|
|
self.assert_tool_installed(output, NINJA, NINJA_VERSION)
|
|
|
|
self.assert_tool_installed(output, IDF_EXE, IDF_EXE_VERSION)
|
|
|
|
self.assert_tool_installed(output, CCACHE, CCACHE_VERSION)
|
|
|
|
self.assert_tool_installed(output, DFU_UTIL, DFU_UTIL_VERSION)
|
2023-09-14 01:55:24 -04:00
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
|
|
|
for tool_version in [ESP32ULP_VERSION, OPENOCD_VERSION, RISCV_ELF_VERSION, XTENSA_ELF_VERSION,
|
|
|
|
XTENSA_ESP_GDB_VERSION, RISCV_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION, CMAKE_VERSION,
|
|
|
|
NINJA_VERSION, IDF_EXE_VERSION, CCACHE_VERSION, DFU_UTIL_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2022-10-20 10:10:38 -04:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp32ulp-elf', ESP32ULP_VERSION, 'esp32ulp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf', XTENSA_ELF_VERSION, 'xtensa-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'openocd-esp32', OPENOCD_VERSION, 'openocd-esp32', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf', RISCV_ELF_VERSION, 'riscv32-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf-gdb', XTENSA_ESP_GDB_VERSION, 'xtensa-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf-gdb', RISCV_ESP_GDB_VERSION, 'riscv32-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp-rom-elfs', ESP_ROM_ELFS_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CMAKE, CMAKE_VERSION, 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', NINJA, NINJA_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', IDF_EXE, IDF_EXE_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CCACHE, CCACHE_VERSION, 'ccache-4.8-windows-x86_64'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', DFU_UTIL, DFU_UTIL_VERSION, 'dfu-util-0.11-win64'
|
|
|
|
), output)
|
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['list', '--outdated'])
|
|
|
|
self.assertEqual('', output)
|
|
|
|
|
|
|
|
tools_json_outdated = os.path.join(self.temp_tools_dir, 'tools', 'tools.outdated.json')
|
|
|
|
new_version = 'zzzzzz'
|
2022-10-20 10:10:38 -04:00
|
|
|
self.run_idf_tools_with_action(
|
|
|
|
[
|
|
|
|
'add-version',
|
|
|
|
'--tool',
|
2023-12-08 10:36:05 -05:00
|
|
|
XTENSA_ELF,
|
2022-10-20 10:10:38 -04:00
|
|
|
'--url-prefix',
|
|
|
|
'http://test.com',
|
|
|
|
'--version',
|
2023-12-08 10:36:05 -05:00
|
|
|
new_version,
|
2022-10-20 10:10:38 -04:00
|
|
|
'--override',
|
|
|
|
'--checksum-file',
|
|
|
|
'add_version/checksum.sha256',
|
|
|
|
'--output',
|
2023-12-08 10:36:05 -05:00
|
|
|
tools_json_outdated
|
2022-10-20 10:10:38 -04:00
|
|
|
])
|
2021-12-13 10:45:11 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(
|
|
|
|
[
|
|
|
|
'--tools-json',
|
|
|
|
tools_json_outdated,
|
|
|
|
'list',
|
|
|
|
'--outdated'
|
|
|
|
])
|
|
|
|
self.assertIn((f'{XTENSA_ELF}: version {XTENSA_ELF_VERSION} '
|
|
|
|
f'is outdated by {new_version}'), output)
|
2021-11-08 11:55:03 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
def test_tools_for_esp32_win(self):
|
|
|
|
required_tools_installed = 9
|
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32'])
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assert_tool_installed(output, CMAKE, CMAKE_VERSION)
|
|
|
|
self.assert_tool_installed(output, NINJA, NINJA_VERSION)
|
|
|
|
self.assert_tool_installed(output, IDF_EXE, IDF_EXE_VERSION)
|
|
|
|
self.assert_tool_installed(output, CCACHE, CCACHE_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, DFU_UTIL, DFU_UTIL_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
|
|
|
for tool_version in [ESP32ULP_VERSION, OPENOCD_VERSION, XTENSA_ELF_VERSION, XTENSA_ESP_GDB_VERSION,
|
|
|
|
ESP_ROM_ELFS_VERSION, CMAKE_VERSION, NINJA_VERSION, IDF_EXE_VERSION, CCACHE_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
|
|
|
self.assertNotIn('version installed in tools directory: ' + DFU_UTIL_VERSION, output)
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp32ulp-elf', ESP32ULP_VERSION, 'esp32ulp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf', XTENSA_ELF_VERSION, 'xtensa-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'openocd-esp32', OPENOCD_VERSION, 'openocd-esp32', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf-gdb', XTENSA_ESP_GDB_VERSION, 'xtensa-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf', RISCV_ELF_VERSION, 'riscv32-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf-gdb', RISCV_ESP_GDB_VERSION, 'riscv32-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp-rom-elfs', ESP_ROM_ELFS_VERSION,
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CMAKE, CMAKE_VERSION, 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', NINJA, NINJA_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', IDF_EXE, IDF_EXE_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CCACHE, CCACHE_VERSION, 'ccache-4.8-windows-x86_64'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', DFU_UTIL, DFU_UTIL_VERSION, 'dfu-util-0.11-win64'
|
|
|
|
), output)
|
|
|
|
|
|
|
|
def test_tools_for_esp32c3_win(self):
|
|
|
|
required_tools_installed = 8
|
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32c3'])
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assert_tool_installed(output, CMAKE, CMAKE_VERSION)
|
|
|
|
self.assert_tool_installed(output, NINJA, NINJA_VERSION)
|
|
|
|
self.assert_tool_installed(output, IDF_EXE, IDF_EXE_VERSION)
|
|
|
|
self.assert_tool_installed(output, CCACHE, CCACHE_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, DFU_UTIL, DFU_UTIL_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
|
|
|
for tool_version in [OPENOCD_VERSION, RISCV_ELF_VERSION, RISCV_ESP_GDB_VERSION, ESP_ROM_ELFS_VERSION,
|
|
|
|
CMAKE_VERSION, NINJA_VERSION, IDF_EXE_VERSION, CCACHE_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
|
|
|
self.assertNotIn('version installed in tools directory: ' + DFU_UTIL_VERSION, output)
|
2023-12-02 00:38:51 -05:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'openocd-esp32', OPENOCD_VERSION, 'openocd-esp32', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf', RISCV_ELF_VERSION, 'riscv32-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp32ulp-elf', ESP32ULP_VERSION, 'esp32ulp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf', XTENSA_ELF_VERSION, 'xtensa-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf-gdb', XTENSA_ESP_GDB_VERSION, 'xtensa-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp-rom-elfs', ESP_ROM_ELFS_VERSION,
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CMAKE, CMAKE_VERSION, 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', NINJA, NINJA_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', IDF_EXE, IDF_EXE_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CCACHE, CCACHE_VERSION, 'ccache-4.8-windows-x86_64'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', DFU_UTIL, DFU_UTIL_VERSION, 'dfu-util-0.11-win64'
|
|
|
|
), output)
|
|
|
|
|
|
|
|
def test_tools_for_esp32s2_win(self):
|
|
|
|
required_tools_installed = 11
|
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32s2'])
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, CMAKE, CMAKE_VERSION)
|
|
|
|
self.assert_tool_installed(output, NINJA, NINJA_VERSION)
|
|
|
|
self.assert_tool_installed(output, IDF_EXE, IDF_EXE_VERSION)
|
|
|
|
self.assert_tool_installed(output, CCACHE, CCACHE_VERSION)
|
|
|
|
self.assert_tool_installed(output, DFU_UTIL, DFU_UTIL_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
|
|
|
for tool_version in [OPENOCD_VERSION, XTENSA_ELF_VERSION, XTENSA_ESP_GDB_VERSION, DFU_UTIL_VERSION,
|
|
|
|
ESP_ROM_ELFS_VERSION, CMAKE_VERSION, NINJA_VERSION, IDF_EXE_VERSION, CCACHE_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf', XTENSA_ELF_VERSION, 'xtensa-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'openocd-esp32', OPENOCD_VERSION, 'openocd-esp32', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp32ulp-elf', ESP32ULP_VERSION, 'esp32ulp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf', RISCV_ELF_VERSION, 'riscv32-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf-gdb', XTENSA_ESP_GDB_VERSION, 'xtensa-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf-gdb', RISCV_ESP_GDB_VERSION, 'riscv32-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp-rom-elfs', ESP_ROM_ELFS_VERSION,
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CMAKE, CMAKE_VERSION, 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', NINJA, NINJA_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', IDF_EXE, IDF_EXE_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CCACHE, CCACHE_VERSION, 'ccache-4.8-windows-x86_64'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', DFU_UTIL, DFU_UTIL_VERSION, 'dfu-util-0.11-win64'
|
|
|
|
), output)
|
|
|
|
|
|
|
|
def test_tools_for_esp32s3_win(self):
|
|
|
|
required_tools_installed = 11
|
|
|
|
output = self.run_idf_tools_with_action(['install', '--targets=esp32s3'])
|
|
|
|
print(output)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, CMAKE, CMAKE_VERSION)
|
|
|
|
self.assert_tool_installed(output, NINJA, NINJA_VERSION)
|
|
|
|
self.assert_tool_installed(output, IDF_EXE, IDF_EXE_VERSION)
|
|
|
|
self.assert_tool_installed(output, CCACHE, CCACHE_VERSION)
|
|
|
|
self.assert_tool_installed(output, DFU_UTIL, DFU_UTIL_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
output = self.run_idf_tools_with_action(['check'])
|
|
|
|
for tool_version in [OPENOCD_VERSION, XTENSA_ELF_VERSION, XTENSA_ESP_GDB_VERSION, RISCV_ESP_GDB_VERSION,
|
|
|
|
DFU_UTIL_VERSION, ESP_ROM_ELFS_VERSION, CMAKE_VERSION, NINJA_VERSION,
|
|
|
|
IDF_EXE_VERSION, CCACHE_VERSION]:
|
|
|
|
self.assertIn('version installed in tools directory: ' + tool_version, output)
|
2023-12-02 00:38:51 -05:00
|
|
|
|
|
|
|
output = self.run_idf_tools_with_action(['export'])
|
2023-12-08 10:36:05 -05:00
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'openocd-esp32', OPENOCD_VERSION, 'openocd-esp32', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf', XTENSA_ELF_VERSION, 'xtensa-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp32ulp-elf', ESP32ULP_VERSION, 'esp32ulp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf', RISCV_ELF_VERSION, 'riscv32-esp-elf', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'xtensa-esp-elf-gdb', XTENSA_ESP_GDB_VERSION, 'xtensa-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertNotIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'riscv32-esp-elf-gdb', RISCV_ESP_GDB_VERSION, 'riscv32-esp-elf-gdb', 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', 'esp-rom-elfs', ESP_ROM_ELFS_VERSION,
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CMAKE, CMAKE_VERSION, 'bin'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', NINJA, NINJA_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', IDF_EXE, IDF_EXE_VERSION
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', CCACHE, CCACHE_VERSION, 'ccache-4.8-windows-x86_64'
|
|
|
|
), output)
|
|
|
|
self.assertIn(os.path.join(
|
|
|
|
self.temp_tools_dir, 'tools', DFU_UTIL, DFU_UTIL_VERSION, 'dfu-util-0.11-win64'
|
|
|
|
), output)
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2023-12-08 10:36:05 -05:00
|
|
|
# a different test for qemu because of "on_request"
|
|
|
|
def test_tools_for_qemu_with_required_win(self):
|
|
|
|
required_tools_installed = 14
|
|
|
|
output = self.run_idf_tools_with_action(['install', 'required', 'qemu-xtensa', 'qemu-riscv32'])
|
|
|
|
self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION, RISCV_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ELF, XTENSA_ELF_VERSION, XTENSA_ELF_ARCHIVE_PATTERN)
|
|
|
|
self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION)
|
|
|
|
self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
|
|
|
|
self.assert_tool_installed(output, ESP_ROM_ELFS, ESP_ROM_ELFS_VERSION)
|
|
|
|
self.assert_tool_installed(output, QEMU_RISCV, QEMU_RISCV_VERSION)
|
|
|
|
self.assert_tool_installed(output, QEMU_XTENSA, QEMU_XTENSA_VERSION)
|
|
|
|
self.assert_tool_installed(output, CMAKE, CMAKE_VERSION)
|
|
|
|
self.assert_tool_installed(output, NINJA, NINJA_VERSION)
|
|
|
|
self.assert_tool_installed(output, IDF_EXE, IDF_EXE_VERSION)
|
|
|
|
self.assert_tool_installed(output, CCACHE, CCACHE_VERSION)
|
|
|
|
self.assert_tool_installed(output, DFU_UTIL, DFU_UTIL_VERSION)
|
|
|
|
self.assertIn('Destination: {}'.format(os.path.join(self.temp_tools_dir, 'dist')), output)
|
|
|
|
self.assertEqual(required_tools_installed, output.count('Done'))
|
2023-12-02 00:38:51 -05:00
|
|
|
|
2019-04-17 03:30:30 -04:00
|
|
|
|
|
|
|
class TestMaintainer(unittest.TestCase):
|
|
|
|
|
2022-03-15 15:02:37 -04:00
|
|
|
@classmethod
|
|
|
|
def setUpClass(cls):
|
|
|
|
idf_path = os.getenv('IDF_PATH')
|
2023-09-14 01:55:24 -04:00
|
|
|
assert idf_path, 'IDF_PATH needs to be set to run this test'
|
2022-03-15 15:02:37 -04:00
|
|
|
cls.tools_old = os.path.join(idf_path, 'tools/tools.json')
|
|
|
|
cls.tools_new = os.path.join(idf_path, 'tools/tools.new.json')
|
2023-07-12 04:28:58 -04:00
|
|
|
cls.test_tool_name = 'xtensa-esp-elf'
|
2022-03-15 15:02:37 -04:00
|
|
|
|
2019-04-17 03:30:30 -04:00
|
|
|
def test_validation(self):
|
|
|
|
idf_tools.main(['validate'])
|
|
|
|
|
|
|
|
def test_json_rewrite(self):
|
|
|
|
idf_tools.main(['rewrite'])
|
2022-03-15 15:02:37 -04:00
|
|
|
with open(self.tools_old, 'r') as f:
|
2019-04-17 03:30:30 -04:00
|
|
|
json_old = f.read()
|
2022-03-15 15:02:37 -04:00
|
|
|
with open(self.tools_new, 'r') as f:
|
2019-04-17 03:30:30 -04:00
|
|
|
json_new = f.read()
|
2021-06-05 04:59:42 -04:00
|
|
|
self.assertEqual(json_old, json_new, "Please check 'tools/tools.new.json' to find a cause!")
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2022-03-15 15:02:37 -04:00
|
|
|
def add_version_get_expected_json(self, addition_file, replace=False):
|
|
|
|
with open(self.tools_old, 'r') as f:
|
|
|
|
expected_json = json.load(f)
|
|
|
|
with open(addition_file, 'r') as f:
|
|
|
|
addition_json = json.load(f)
|
|
|
|
for tool in expected_json['tools']:
|
|
|
|
if tool['name'] == self.test_tool_name:
|
|
|
|
if replace:
|
|
|
|
tool['versions'] = [addition_json]
|
|
|
|
else:
|
|
|
|
tool['versions'].append(addition_json)
|
|
|
|
return expected_json
|
|
|
|
return None
|
|
|
|
|
|
|
|
def test_add_version_artifact_addition(self):
|
|
|
|
filenames = []
|
|
|
|
with open('add_version/artifact_input.json', 'r') as f:
|
|
|
|
add_tools_info = json.load(f)
|
|
|
|
for tool in add_tools_info:
|
|
|
|
filenames.append(tool['filename'])
|
|
|
|
with open(tool['filename'], 'w') as f:
|
|
|
|
self.addCleanup(os.remove, f.name)
|
|
|
|
f.write('1' * tool['size'])
|
|
|
|
idf_tools.main(
|
|
|
|
[
|
|
|
|
'add-version',
|
|
|
|
'--tool',
|
|
|
|
self.test_tool_name,
|
|
|
|
'--url-prefix',
|
|
|
|
'http://test.com',
|
|
|
|
'--version',
|
|
|
|
'test',
|
|
|
|
'--artifact-file'
|
|
|
|
] + filenames
|
|
|
|
)
|
|
|
|
expected_json = self.add_version_get_expected_json('add_version/artifact_expected_addition.json')
|
|
|
|
with open(self.tools_new, 'r') as f1:
|
|
|
|
self.assertEqual(json.load(f1), expected_json, "Please check 'tools/tools.new.json' to find a cause!")
|
|
|
|
|
|
|
|
def test_add_version_checksum_addition(self):
|
|
|
|
idf_tools.main(
|
|
|
|
[
|
|
|
|
'add-version',
|
|
|
|
'--tool',
|
|
|
|
self.test_tool_name,
|
|
|
|
'--url-prefix',
|
|
|
|
'http://test.com',
|
|
|
|
'--version',
|
|
|
|
'test',
|
|
|
|
'--checksum-file',
|
|
|
|
'add_version/checksum.sha256',
|
|
|
|
]
|
|
|
|
)
|
|
|
|
expected_json = self.add_version_get_expected_json('add_version/checksum_expected_addition.json')
|
|
|
|
with open(self.tools_new, 'r') as f1:
|
|
|
|
self.assertEqual(json.load(f1), expected_json, "Please check 'tools/tools.new.json' to find a cause!")
|
|
|
|
|
|
|
|
def test_add_version_checksum_with_override(self):
|
|
|
|
idf_tools.main(
|
|
|
|
[
|
|
|
|
'add-version',
|
|
|
|
'--tool',
|
|
|
|
self.test_tool_name,
|
|
|
|
'--url-prefix',
|
|
|
|
'http://test.com',
|
|
|
|
'--version',
|
|
|
|
'test',
|
|
|
|
'--override',
|
|
|
|
'--checksum-file',
|
|
|
|
'add_version/checksum.sha256'
|
|
|
|
]
|
|
|
|
)
|
|
|
|
expected_json = self.add_version_get_expected_json('add_version/checksum_expected_override.json', True)
|
|
|
|
with open(self.tools_new, 'r') as f1:
|
|
|
|
self.assertEqual(json.load(f1), expected_json, "Please check 'tools/tools.new.json' to find a cause!")
|
|
|
|
|
2019-04-17 03:30:30 -04:00
|
|
|
|
2023-12-18 08:01:27 -05:00
|
|
|
class TestArmDetection(unittest.TestCase):
|
|
|
|
|
|
|
|
ELF_HEADERS = {
|
|
|
|
idf_tools.PLATFORM_LINUX_ARM64: 'platform_detection/arm64_header.elf',
|
|
|
|
idf_tools.PLATFORM_LINUX_ARMHF: 'platform_detection/armhf_header.elf',
|
|
|
|
idf_tools.PLATFORM_LINUX_ARM32: 'platform_detection/arm32_header.elf',
|
|
|
|
}
|
|
|
|
|
|
|
|
ARM_PLATFORMS = {
|
|
|
|
idf_tools.PLATFORM_LINUX_ARM64,
|
|
|
|
idf_tools.PLATFORM_LINUX_ARMHF,
|
|
|
|
idf_tools.PLATFORM_LINUX_ARM32,
|
|
|
|
}
|
|
|
|
|
|
|
|
def test_arm_detection(self):
|
|
|
|
for platform in idf_tools.Platforms.PLATFORM_FROM_NAME.values():
|
|
|
|
with patch('sys.executable', __file__): # use invalid ELF as executable. In this case passed parameter must return
|
|
|
|
self.assertEqual(idf_tools.Platforms.detect_linux_arm_platform(platform), platform)
|
|
|
|
# detect_linux_arm_platform() intended to return arch that detected in sys.executable ELF
|
|
|
|
for exec_platform in (idf_tools.PLATFORM_LINUX_ARM64, idf_tools.PLATFORM_LINUX_ARMHF, idf_tools.PLATFORM_LINUX_ARM32):
|
|
|
|
with patch('sys.executable', TestArmDetection.ELF_HEADERS[exec_platform]):
|
|
|
|
for platform in TestArmDetection.ARM_PLATFORMS:
|
|
|
|
self.assertEqual(idf_tools.Platforms.detect_linux_arm_platform(platform), exec_platform)
|
|
|
|
|
|
|
|
|
2019-04-17 03:30:30 -04:00
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|