mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-04 13:41:11 -09:00
The maintainers of the flutter-gallery package archived the project as of
February 16, 2024. In addition, the flutter-gallery package is incompatible
with Flutter 3.19.x. Because of these problems, using the flutter-gallery
package as the testing application for Flutter is no longer reasonable nor
maintainable.
However, it is reasonable to use the flutter-markdown-example package from
flutter-packages, as it is a first-party application updated regularly and
often automatically, ensuring compatibility with the latest versions of
Flutter.
- Switch the package used for Flutter testing from flutter-gallery to
flutter-markdown-example
- Rename flutter-gallery.service to flutter-markdown-example.service
- Change /usr/share/flutter/gallery/release/ to
/usr/share/flutter/flutter_markdown_example/release/
- Run `systemctl is-active flutter-markdown-example` instead of
`systemctl is-active flutter-gallery`
Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
56 lines
2.1 KiB
Python
56 lines
2.1 KiB
Python
import os
|
|
import infra.basetest
|
|
|
|
|
|
class TestFlutter(infra.basetest.BRTest):
|
|
config = f"""
|
|
BR2_aarch64=y
|
|
BR2_TOOLCHAIN_EXTERNAL=y
|
|
BR2_TOOLCHAIN_EXTERNAL_BOOTLIN=y
|
|
BR2_ROOTFS_OVERLAY="{infra.filepath("tests/package/test_flutter/overlay")}"
|
|
BR2_PER_PACKAGE_DIRECTORIES=y
|
|
BR2_INIT_SYSTEMD=y
|
|
BR2_LINUX_KERNEL=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION=y
|
|
BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="6.1.54"
|
|
BR2_LINUX_KERNEL_USE_CUSTOM_CONFIG=y
|
|
BR2_LINUX_KERNEL_NEEDS_HOST_LIBELF=y
|
|
BR2_LINUX_KERNEL_CUSTOM_CONFIG_FILE="board/qemu/aarch64-virt/linux.config"
|
|
BR2_LINUX_KERNEL_CONFIG_FRAGMENT_FILES="{infra.filepath("tests/package/test_flutter/linux-vkms.fragment")}"
|
|
BR2_PACKAGE_LIBDRM=y
|
|
BR2_PACKAGE_MESA3D=y
|
|
BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_SWRAST=y
|
|
BR2_PACKAGE_MESA3D_GALLIUM_DRIVER_VIRGL=y
|
|
BR2_PACKAGE_MESA3D_OPENGL_ES=y
|
|
BR2_PACKAGE_FLUTTER_PI=y
|
|
BR2_PACKAGE_FLUTTER_PI_RAW_KEYBOARD_PLUGIN=y
|
|
BR2_PACKAGE_FLUTTER_PI_TEXT_INPUT_PLUGIN=y
|
|
BR2_PACKAGE_FLUTTER_PACKAGES=y
|
|
BR2_PACKAGE_FLUTTER_MARKDOWN_EXAMPLE=y
|
|
BR2_PACKAGE_FLUTTER_ENGINE=y
|
|
BR2_TARGET_ROOTFS_EXT2=y
|
|
BR2_TARGET_ROOTFS_EXT2_4=y
|
|
BR2_TARGET_ROOTFS_EXT2_SIZE="512M"
|
|
# BR2_TARGET_ROOTFS_TAR is not set
|
|
"""
|
|
|
|
def test_run(self):
|
|
img = os.path.join(self.builddir, "images", "rootfs.ext2")
|
|
kern = os.path.join(self.builddir, "images", "Image")
|
|
self.emulator.boot(
|
|
arch="aarch64",
|
|
kernel=kern,
|
|
kernel_cmdline=["root=/dev/vda console=ttyAMA0"],
|
|
options=["-M", "virt",
|
|
"-cpu", "cortex-a57",
|
|
"-m", "512M",
|
|
"-smp", "4",
|
|
"-vga", "std",
|
|
"-vnc", "none",
|
|
"-drive", f"file={img},if=virtio,format=raw"])
|
|
self.emulator.login()
|
|
cmd = "systemctl is-active flutter-markdown-example"
|
|
output, exit_code = self.emulator.run(cmd, 10)
|
|
self.assertEqual(exit_code, 0)
|
|
self.assertEqual(output[0], "active")
|