| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488 |
- #!/usr/bin/env python
- #
- # SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
- # SPDX-License-Identifier: Apache-2.0
- import json
- import os
- import re
- import shutil
- import sys
- import tempfile
- import unittest
- try:
- from contextlib import redirect_stdout
- except ImportError:
- import contextlib
- @contextlib.contextmanager # type: ignore
- 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
- ESP32ULP = 'esp32ulp-elf'
- ESP32ULP_ARCHIVE = 'binutils-esp32ulp'
- ESP32S2ULP = 'esp32s2ulp-elf'
- ESP32S2ULP_ARCHIVE = 'binutils-esp32s2ulp'
- OPENOCD = 'openocd-esp32'
- RISCV_ELF = 'riscv32-esp-elf'
- XTENSA_ESP32_ELF = 'xtensa-esp32-elf'
- XTENSA_ESP32S2_ELF = 'xtensa-esp32s2-elf'
- XTENSA_ESP32S3_ELF = 'xtensa-esp32s3-elf'
- XTENSA_ESP_GDB = 'xtensa-esp-elf-gdb'
- RISCV_ESP_GDB = 'riscv32-esp-elf-gdb'
- 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]
- ESP32S2ULP_VERSION = version_dict[ESP32S2ULP]
- OPENOCD_VERSION = version_dict[OPENOCD]
- RISCV_ELF_VERSION = version_dict[RISCV_ELF]
- XTENSA_ESP32_ELF_VERSION = version_dict[XTENSA_ESP32_ELF]
- XTENSA_ESP32S2_ELF_VERSION = version_dict[XTENSA_ESP32S2_ELF]
- XTENSA_ESP32S3_ELF_VERSION = version_dict[XTENSA_ESP32S3_ELF]
- XTENSA_ESP_GDB_VERSION = version_dict[XTENSA_ESP_GDB]
- RISCV_ESP_GDB_VERSION = version_dict[RISCV_ESP_GDB]
- class TestUsage(unittest.TestCase):
- @classmethod
- def setUpClass(cls):
- 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):
- 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(
- old_tools_dir, 'dist', '')
- if mirror_prefix_map:
- print('Using IDF_MIRROR_PREFIX_MAP={}'.format(mirror_prefix_map))
- os.environ['IDF_MIRROR_PREFIX_MAP'] = mirror_prefix_map
- cls.temp_tools_dir = tempfile.mkdtemp(prefix='idf_tools_tmp')
- print('Using IDF_TOOLS_PATH={}'.format(cls.temp_tools_dir))
- os.environ['IDF_TOOLS_PATH'] = cls.temp_tools_dir
- cls.idf_env_json = os.path.join(cls.temp_tools_dir, 'idf-env.json')
- @classmethod
- def tearDownClass(cls):
- shutil.rmtree(cls.temp_tools_dir)
- 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'))
- if os.path.isdir(os.path.join(self.temp_tools_dir, 'tools')):
- shutil.rmtree(os.path.join(self.temp_tools_dir, 'tools'))
- if os.path.isfile(self.idf_env_json):
- os.remove(self.idf_env_json)
- 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)
- self.assertRegex(output, re.compile(rf'Downloading \S+/{tool_archive_name}'))
- 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)
- self.assertNotRegex(output, re.compile(rf'Downloading \S+/{tool_archive_name}'))
- def run_idf_tools_with_action(self, action):
- output_stream = StringIO()
- with redirect_stdout(output_stream):
- idf_tools.main(['--non-interactive'] + action)
- output = output_stream.getvalue()
- return output
- 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:' % ESP32S2ULP, output)
- self.assertIn('- %s (recommended)' % ESP32S2ULP_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_ESP32_ELF, output)
- self.assertIn('- %s (recommended)' % XTENSA_ESP32_ELF_VERSION, output)
- self.assertIn('* %s:' % XTENSA_ESP32S2_ELF, output)
- self.assertIn('- %s (recommended)' % XTENSA_ESP32S2_ELF_VERSION, output)
- self.assertIn('* %s:' % XTENSA_ESP32S3_ELF, output)
- self.assertIn('- %s (recommended)' % XTENSA_ESP32S3_ELF_VERSION, output)
- required_tools_installed = 9
- 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)
- self.assert_tool_installed(output, XTENSA_ESP32_ELF, XTENSA_ESP32_ELF_VERSION)
- self.assert_tool_installed(output, XTENSA_ESP32S2_ELF, XTENSA_ESP32S2_ELF_VERSION)
- self.assert_tool_installed(output, XTENSA_ESP32S3_ELF, XTENSA_ESP32S3_ELF_VERSION)
- self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION, ESP32ULP_ARCHIVE)
- self.assert_tool_installed(output, ESP32S2ULP, ESP32S2ULP_VERSION, ESP32S2ULP_ARCHIVE)
- 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.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'])
- self.assertIn('version installed in tools directory: ' + ESP32ULP_VERSION, output)
- self.assertIn('version installed in tools directory: ' + ESP32S2ULP_VERSION, output)
- self.assertIn('version installed in tools directory: ' + OPENOCD_VERSION, output)
- self.assertIn('version installed in tools directory: ' + RISCV_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP32_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP32S2_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP32S3_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP_GDB_VERSION, output)
- self.assertIn('version installed in tools directory: ' + RISCV_ESP_GDB_VERSION, output)
- output = self.run_idf_tools_with_action(['export'])
- self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32ULP_VERSION), output)
- self.assertIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32_ELF_VERSION), output)
- 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' %
- (self.temp_tools_dir, RISCV_ELF_VERSION), output)
- self.assertIn('%s/tools/esp32s2ulp-elf/%s/esp32s2ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32S2ULP_VERSION), output)
- self.assertIn('%s/tools/xtensa-esp32s2-elf/%s/xtensa-esp32s2-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S2_ELF_VERSION), output)
- self.assertIn('%s/tools/xtensa-esp32s3-elf/%s/xtensa-esp32s3-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S3_ELF_VERSION), output)
- 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)
- def test_tools_for_esp32(self):
- required_tools_installed = 4
- output = self.run_idf_tools_with_action(['install', '--targets=esp32'])
- self.assert_tool_installed(output, XTENSA_ESP32_ELF, XTENSA_ESP32_ELF_VERSION)
- self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
- self.assert_tool_installed(output, ESP32ULP, ESP32ULP_VERSION, ESP32ULP_ARCHIVE)
- self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
- self.assert_tool_not_installed(output, RISCV_ELF, RISCV_ELF_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32S2_ELF, XTENSA_ESP32S2_ELF_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32S3_ELF, XTENSA_ESP32S3_ELF_VERSION)
- self.assert_tool_not_installed(output, ESP32S2ULP, ESP32S2ULP_VERSION, ESP32S2ULP_ARCHIVE)
- self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_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'])
- self.assertIn('version installed in tools directory: ' + ESP32ULP_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP32_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + OPENOCD_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP_GDB_VERSION, output)
- output = self.run_idf_tools_with_action(['export'])
- self.assertIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32ULP_VERSION), output)
- self.assertIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32_ELF_VERSION), output)
- self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
- (self.temp_tools_dir, OPENOCD_VERSION), output)
- 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/%s/riscv32-esp-elf/bin' %
- (self.temp_tools_dir, RISCV_ELF_VERSION), output)
- self.assertNotIn('%s/tools/esp32s2ulp-elf/%s/esp32s2ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32S2ULP_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32s2-elf/%s/xtensa-esp32s2-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S2_ELF_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32s3-elf/%s/xtensa-esp32s3-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S3_ELF_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)
- def test_tools_for_esp32c3(self):
- required_tools_installed = 3
- 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)
- self.assert_tool_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32_ELF, XTENSA_ESP32_ELF_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32S2_ELF, XTENSA_ESP32S2_ELF_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32S3_ELF, XTENSA_ESP32S3_ELF_VERSION)
- self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION, ESP32ULP_ARCHIVE)
- self.assert_tool_not_installed(output, ESP32S2ULP, ESP32S2ULP_VERSION, ESP32S2ULP_ARCHIVE)
- self.assert_tool_not_installed(output, XTENSA_ESP_GDB_VERSION, XTENSA_ESP_GDB_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'])
- self.assertIn('version installed in tools directory: ' + OPENOCD_VERSION, output)
- self.assertIn('version installed in tools directory: ' + RISCV_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + RISCV_ESP_GDB_VERSION, output)
- 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' %
- (self.temp_tools_dir, RISCV_ELF_VERSION), output)
- self.assertNotIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32ULP_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32_ELF_VERSION), output)
- self.assertNotIn('%s/tools/esp32s2ulp-elf/%s/esp32s2ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32S2ULP_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32s2-elf/%s/xtensa-esp32s2-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S2_ELF_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32s3-elf/%s/xtensa-esp32s3-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S3_ELF_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp-elf-gdb/%s/xtensa-esp-elf-gdb/bin' %
- (self.temp_tools_dir, XTENSA_ESP_GDB_VERSION), output)
- def test_tools_for_esp32s2(self):
- required_tools_installed = 5
- output = self.run_idf_tools_with_action(['install', '--targets=esp32s2'])
- self.assert_tool_installed(output, XTENSA_ESP32S2_ELF, XTENSA_ESP32S2_ELF_VERSION)
- self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
- self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION)
- self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
- self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32_ELF, XTENSA_ESP32_ELF_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32S3_ELF, XTENSA_ESP32S3_ELF_VERSION)
- self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION, ESP32ULP_ARCHIVE)
- self.assert_tool_installed(output, ESP32S2ULP, ESP32S2ULP_VERSION, ESP32S2ULP_ARCHIVE)
- 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'])
- self.assertIn('version installed in tools directory: ' + ESP32S2ULP_VERSION, output)
- self.assertIn('version installed in tools directory: ' + OPENOCD_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP32S2_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP_GDB_VERSION, output)
- output = self.run_idf_tools_with_action(['export'])
- self.assertIn('%s/tools/esp32s2ulp-elf/%s/esp32s2ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32S2ULP_VERSION), output)
- self.assertIn('%s/tools/xtensa-esp32s2-elf/%s/xtensa-esp32s2-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S2_ELF_VERSION), output)
- self.assertIn('%s/tools/openocd-esp32/%s/openocd-esp32/bin' %
- (self.temp_tools_dir, OPENOCD_VERSION), output)
- self.assertNotIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32ULP_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32_ELF_VERSION), output)
- self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
- (self.temp_tools_dir, RISCV_ELF_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32s3-elf/%s/xtensa-esp32s3-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S3_ELF_VERSION), output)
- 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)
- def test_tools_for_esp32s3(self):
- required_tools_installed = 5
- output = self.run_idf_tools_with_action(['install', '--targets=esp32s3'])
- self.assert_tool_installed(output, XTENSA_ESP32S3_ELF, XTENSA_ESP32S3_ELF_VERSION)
- self.assert_tool_installed(output, OPENOCD, OPENOCD_VERSION)
- self.assert_tool_installed(output, RISCV_ELF, RISCV_ELF_VERSION)
- self.assert_tool_installed(output, XTENSA_ESP_GDB, XTENSA_ESP_GDB_VERSION)
- self.assert_tool_not_installed(output, RISCV_ESP_GDB, RISCV_ESP_GDB_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32_ELF, XTENSA_ESP32_ELF_VERSION)
- self.assert_tool_not_installed(output, XTENSA_ESP32S2_ELF, XTENSA_ESP32S2_ELF_VERSION)
- self.assert_tool_not_installed(output, ESP32ULP, ESP32ULP_VERSION, ESP32ULP_ARCHIVE)
- self.assert_tool_installed(output, ESP32S2ULP, ESP32S2ULP_VERSION, ESP32S2ULP_ARCHIVE)
- 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'])
- self.assertIn('version installed in tools directory: ' + OPENOCD_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP32S3_ELF_VERSION, output)
- self.assertIn('version installed in tools directory: ' + XTENSA_ESP_GDB_VERSION, output)
- self.assertIn('version installed in tools directory: ' + RISCV_ESP_GDB_VERSION, output)
- 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/xtensa-esp32s3-elf/%s/xtensa-esp32s3-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S3_ELF_VERSION), output)
- self.assertNotIn('%s/tools/esp32ulp-elf/%s/esp32ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32ULP_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32-elf/%s/xtensa-esp32-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32_ELF_VERSION), output)
- self.assertIn('%s/tools/riscv32-esp-elf/%s/riscv32-esp-elf/bin' %
- (self.temp_tools_dir, RISCV_ELF_VERSION), output)
- self.assertIn('%s/tools/esp32s2ulp-elf/%s/esp32s2ulp-elf-binutils/bin' %
- (self.temp_tools_dir, ESP32S2ULP_VERSION), output)
- self.assertNotIn('%s/tools/xtensa-esp32s2-elf/%s/xtensa-esp32s2-elf/bin' %
- (self.temp_tools_dir, XTENSA_ESP32S2_ELF_VERSION), output)
- 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)
- def test_uninstall_option(self):
- self.run_idf_tools_with_action(['install', '--targets=esp32,esp32c3'])
- output = self.run_idf_tools_with_action(['uninstall', '--dry-run'])
- self.assertEqual(output, '')
- with open(self.idf_env_json, 'r') as idf_env_file:
- idf_env_json = json.load(idf_env_file)
- idf_env_json['idfInstalled'][idf_env_json['idfSelectedId']]['targets'].remove('esp32')
- with open(self.idf_env_json, 'w') as w:
- json.dump(idf_env_json, w)
- output = self.run_idf_tools_with_action(['uninstall'])
- self.assertIn(XTENSA_ESP32_ELF, output)
- self.assertIn(ESP32ULP, output)
- output = self.run_idf_tools_with_action(['uninstall', '--dry-run'])
- self.assertEqual(output, '')
- def test_unset(self):
- self.run_idf_tools_with_action(['install'])
- self.run_idf_tools_with_action(['export'])
- self.assertTrue(os.path.isfile(self.idf_env_json), 'File {} was not found. '.format(self.idf_env_json))
- self.assertNotEqual(os.stat(self.idf_env_json).st_size, 0, 'File {} is empty. '.format(self.idf_env_json))
- with open(self.idf_env_json, 'r') as idf_env_file:
- idf_env_json = json.load(idf_env_file)
- selected_idf = idf_env_json['idfSelectedId']
- self.assertIn('unset', idf_env_json['idfInstalled'][selected_idf],
- 'Unset was not created for active environment in {}.'.format(self.idf_env_json))
- class TestMaintainer(unittest.TestCase):
- @classmethod
- def setUpClass(cls):
- idf_path = os.getenv('IDF_PATH')
- cls.tools_old = os.path.join(idf_path, 'tools/tools.json')
- cls.tools_new = os.path.join(idf_path, 'tools/tools.new.json')
- cls.test_tool_name = 'xtensa-esp32-elf'
- def test_validation(self):
- idf_tools.main(['validate'])
- def test_json_rewrite(self):
- idf_tools.main(['rewrite'])
- idf_path = os.getenv('IDF_PATH')
- if not idf_path:
- self.fail('IDF_PATH needs to be set to run this test')
- with open(self.tools_old, 'r') as f:
- json_old = f.read()
- with open(self.tools_new, 'r') as f:
- json_new = f.read()
- self.assertEqual(json_old, json_new, "Please check 'tools/tools.new.json' to find a cause!")
- 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!")
- if __name__ == '__main__':
- unittest.main()
|