[Notes] [Git][BuildStream/buildstream][issue-638-validate-all-files] 12 commits: _stream.py: Fix ugly error when opening a workspace using a relative path



Title: GitLab

Phillip Smyth pushed to branch issue-638-validate-all-files at BuildStream / buildstream

Commits:

22 changed files:

Changes:

  • NEWS
    ... ... @@ -6,6 +6,10 @@ buildstream 1.3.1
    6 6
         specific. Recommendation if you are building in Linux is to use the
    
    7 7
         ones being used in freedesktop-sdk project, for example
    
    8 8
     
    
    9
    +  o Running `bst show` without elements specified will now attempt to show
    
    10
    +    the default element defined in the projcet configuration.
    
    11
    +    If no default element is defined, all elements in the project will be shown
    
    12
    +
    
    9 13
       o All elements must now be suffixed with `.bst`
    
    10 14
         Attempting to use an element that does not have the `.bst` extension,
    
    11 15
         will result in a warning.
    
    ... ... @@ -86,6 +90,11 @@ buildstream 1.3.1
    86 90
       o Opening a workspace now creates a .bstproject.yaml file that allows buildstream
    
    87 91
         commands to be run from a workspace that is not inside a project.
    
    88 92
     
    
    93
    +  o Specifying an element is now optional for some commands when buildstream is run
    
    94
    +    from inside a workspace - the 'build', 'checkout', 'fetch', 'pull', 'push',
    
    95
    +    'shell', 'show', 'source-checkout', 'track', 'workspace close' and 'workspace reset'
    
    96
    +    commands are affected.
    
    97
    +
    
    89 98
     
    
    90 99
     =================
    
    91 100
     buildstream 1.1.5
    

  • buildstream/_context.py
    ... ... @@ -32,7 +32,7 @@ from ._message import Message, MessageType
    32 32
     from ._profile import Topics, profile_start, profile_end
    
    33 33
     from ._artifactcache import ArtifactCache
    
    34 34
     from ._artifactcache.cascache import CASCache
    
    35
    -from ._workspaces import Workspaces, WorkspaceProjectCache
    
    35
    +from ._workspaces import Workspaces, WorkspaceProjectCache, WORKSPACE_PROJECT_FILE
    
    36 36
     from .plugin import _plugin_lookup
    
    37 37
     
    
    38 38
     
    
    ... ... @@ -47,9 +47,12 @@ from .plugin import _plugin_lookup
    47 47
     # verbosity levels and basically anything pertaining to the context
    
    48 48
     # in which BuildStream was invoked.
    
    49 49
     #
    
    50
    +# Args:
    
    51
    +#    directory (str): The directory that buildstream was invoked in
    
    52
    +#
    
    50 53
     class Context():
    
    51 54
     
    
    52
    -    def __init__(self):
    
    55
    +    def __init__(self, directory=None):
    
    53 56
     
    
    54 57
             # Filename indicating which configuration file was used, or None for the defaults
    
    55 58
             self.config_origin = None
    
    ... ... @@ -148,6 +151,7 @@ class Context():
    148 151
             self._log_handle = None
    
    149 152
             self._log_filename = None
    
    150 153
             self._cascache = None
    
    154
    +        self._directory = directory
    
    151 155
     
    
    152 156
         # load()
    
    153 157
         #
    
    ... ... @@ -645,6 +649,20 @@ class Context():
    645 649
                 self._cascache = CASCache(self.artifactdir)
    
    646 650
             return self._cascache
    
    647 651
     
    
    652
    +    # guess_element()
    
    653
    +    #
    
    654
    +    # Attempts to interpret which element the user intended to run commands on
    
    655
    +    #
    
    656
    +    # Returns:
    
    657
    +    #    (str) The name of the element, or None if no element can be guessed
    
    658
    +    def guess_element(self):
    
    659
    +        workspace_project_dir, _ = utils._search_upward_for_files(self._directory, [WORKSPACE_PROJECT_FILE])
    
    660
    +        if workspace_project_dir:
    
    661
    +            workspace_project = self._workspace_project_cache.get(workspace_project_dir)
    
    662
    +            return workspace_project.get_default_element()
    
    663
    +        else:
    
    664
    +            return None
    
    665
    +
    
    648 666
     
    
    649 667
     # _node_get_option_str()
    
    650 668
     #
    

  • buildstream/_frontend/app.py
    ... ... @@ -164,7 +164,7 @@ class App():
    164 164
             # Load the Context
    
    165 165
             #
    
    166 166
             try:
    
    167
    -            self.context = Context()
    
    167
    +            self.context = Context(directory)
    
    168 168
                 self.context.load(config)
    
    169 169
             except BstError as e:
    
    170 170
                 self._error_exit(e, "Error loading user configuration")
    

  • buildstream/_frontend/cli.py
    ... ... @@ -316,10 +316,15 @@ def build(app, elements, all_, track_, track_save, track_all, track_except, trac
    316 316
         if track_save:
    
    317 317
             click.echo("WARNING: --track-save is deprecated, saving is now unconditional", err=True)
    
    318 318
     
    
    319
    -    if track_all:
    
    320
    -        track_ = elements
    
    321
    -
    
    322 319
         with app.initialized(session_name="Build"):
    
    320
    +        if not all_ and not elements:
    
    321
    +            guessed_target = app.context.guess_element()
    
    322
    +            if guessed_target:
    
    323
    +                elements = (guessed_target,)
    
    324
    +
    
    325
    +        if track_all:
    
    326
    +            track_ = elements
    
    327
    +
    
    323 328
             app.stream.build(elements,
    
    324 329
                              track_targets=track_,
    
    325 330
                              track_except=track_except,
    
    ... ... @@ -371,6 +376,11 @@ def fetch(app, elements, deps, track_, except_, track_cross_junctions):
    371 376
             deps = PipelineSelection.ALL
    
    372 377
     
    
    373 378
         with app.initialized(session_name="Fetch"):
    
    379
    +        if not elements:
    
    380
    +            guessed_target = app.context.guess_element()
    
    381
    +            if guessed_target:
    
    382
    +                elements = (guessed_target,)
    
    383
    +
    
    374 384
             app.stream.fetch(elements,
    
    375 385
                              selection=deps,
    
    376 386
                              except_targets=except_,
    
    ... ... @@ -407,6 +417,11 @@ def track(app, elements, deps, except_, cross_junctions):
    407 417
             all:   All dependencies of all specified elements
    
    408 418
         """
    
    409 419
         with app.initialized(session_name="Track"):
    
    420
    +        if not elements:
    
    421
    +            guessed_target = app.context.guess_element()
    
    422
    +            if guessed_target:
    
    423
    +                elements = (guessed_target,)
    
    424
    +
    
    410 425
             # Substitute 'none' for 'redirect' so that element redirections
    
    411 426
             # will be done
    
    412 427
             if deps == 'none':
    
    ... ... @@ -442,7 +457,13 @@ def pull(app, elements, deps, remote):
    442 457
             none:  No dependencies, just the element itself
    
    443 458
             all:   All dependencies
    
    444 459
         """
    
    460
    +
    
    445 461
         with app.initialized(session_name="Pull"):
    
    462
    +        if not elements:
    
    463
    +            guessed_target = app.context.guess_element()
    
    464
    +            if guessed_target:
    
    465
    +                elements = (guessed_target,)
    
    466
    +
    
    446 467
             app.stream.pull(elements, selection=deps, remote=remote)
    
    447 468
     
    
    448 469
     
    
    ... ... @@ -475,6 +496,11 @@ def push(app, elements, deps, remote):
    475 496
             all:   All dependencies
    
    476 497
         """
    
    477 498
         with app.initialized(session_name="Push"):
    
    499
    +        if not elements:
    
    500
    +            guessed_target = app.context.guess_element()
    
    501
    +            if guessed_target:
    
    502
    +                elements = (guessed_target,)
    
    503
    +
    
    478 504
             app.stream.push(elements, selection=deps, remote=remote)
    
    479 505
     
    
    480 506
     
    
    ... ... @@ -500,6 +526,11 @@ def push(app, elements, deps, remote):
    500 526
     def show(app, elements, deps, except_, order, format_):
    
    501 527
         """Show elements in the pipeline
    
    502 528
     
    
    529
    +    Declaring no elements with result in showing a default element if one is declared in the project configuration.
    
    530
    +
    
    531
    +    If no default is declared, all elements in the project will be shown
    
    532
    +
    
    533
    +
    
    503 534
         By default this will show all of the dependencies of the
    
    504 535
         specified target element.
    
    505 536
     
    
    ... ... @@ -544,7 +575,15 @@ def show(app, elements, deps, except_, order, format_):
    544 575
             bst show target.bst --format \\
    
    545 576
                 $'---------- %{name} ----------\\n%{vars}'
    
    546 577
         """
    
    578
    +
    
    547 579
         with app.initialized():
    
    580
    +        if not elements:
    
    581
    +            guessed_target = app.context.guess_element()
    
    582
    +            if guessed_target:
    
    583
    +                elements = (guessed_target,)
    
    584
    +            else:
    
    585
    +                elements = app.project.get_default_elements()
    
    586
    +
    
    548 587
             dependencies = app.stream.load_selection(elements,
    
    549 588
                                                      selection=deps,
    
    550 589
                                                      except_targets=except_)
    
    ... ... @@ -573,7 +612,7 @@ def show(app, elements, deps, except_, order, format_):
    573 612
                   help="Mount a file or directory into the sandbox")
    
    574 613
     @click.option('--isolate', is_flag=True, default=False,
    
    575 614
                   help='Create an isolated build sandbox')
    
    576
    -@click.argument('element',
    
    615
    +@click.argument('element', required=False,
    
    577 616
                     type=click.Path(readable=False))
    
    578 617
     @click.argument('command', type=click.STRING, nargs=-1)
    
    579 618
     @click.pass_obj
    
    ... ... @@ -604,6 +643,11 @@ def shell(app, element, sysroot, mount, isolate, build_, command):
    604 643
             scope = Scope.RUN
    
    605 644
     
    
    606 645
         with app.initialized():
    
    646
    +        if not element:
    
    647
    +            element = app.context.guess_element()
    
    648
    +            if not element:
    
    649
    +                raise AppError('Missing argument "ELEMENT".')
    
    650
    +
    
    607 651
             dependencies = app.stream.load_selection((element,), selection=PipelineSelection.NONE)
    
    608 652
             element = dependencies[0]
    
    609 653
             prompt = app.shell_prompt(element)
    
    ... ... @@ -641,15 +685,24 @@ def shell(app, element, sysroot, mount, isolate, build_, command):
    641 685
                   help="Create a tarball from the artifact contents instead "
    
    642 686
                        "of a file tree. If LOCATION is '-', the tarball "
    
    643 687
                        "will be dumped to the standard output.")
    
    644
    -@click.argument('element',
    
    688
    +@click.argument('element', required=False,
    
    645 689
                     type=click.Path(readable=False))
    
    646
    -@click.argument('location', type=click.Path())
    
    690
    +@click.argument('location', type=click.Path(), required=False)
    
    647 691
     @click.pass_obj
    
    648 692
     def checkout(app, element, location, force, deps, integrate, hardlinks, tar):
    
    649 693
         """Checkout a built artifact to the specified location
    
    650 694
         """
    
    651 695
         from ..element import Scope
    
    652 696
     
    
    697
    +    if not element and not location:
    
    698
    +        click.echo("ERROR: LOCATION is not specified", err=True)
    
    699
    +        sys.exit(-1)
    
    700
    +
    
    701
    +    if element and not location:
    
    702
    +        # Nasty hack to get around click's optional args
    
    703
    +        location = element
    
    704
    +        element = None
    
    705
    +
    
    653 706
         if hardlinks and tar:
    
    654 707
             click.echo("ERROR: options --hardlinks and --tar conflict", err=True)
    
    655 708
             sys.exit(-1)
    
    ... ... @@ -662,6 +715,11 @@ def checkout(app, element, location, force, deps, integrate, hardlinks, tar):
    662 715
             scope = Scope.NONE
    
    663 716
     
    
    664 717
         with app.initialized():
    
    718
    +        if not element:
    
    719
    +            element = app.context.guess_element()
    
    720
    +            if not element:
    
    721
    +                raise AppError('Missing argument "ELEMENT".')
    
    722
    +
    
    665 723
             app.stream.checkout(element,
    
    666 724
                                 location=location,
    
    667 725
                                 force=force,
    
    ... ... @@ -683,14 +741,28 @@ def checkout(app, element, location, force, deps, integrate, hardlinks, tar):
    683 741
                   help='The dependencies whose sources to checkout (default: none)')
    
    684 742
     @click.option('--fetch', 'fetch_', default=False, is_flag=True,
    
    685 743
                   help='Fetch elements if they are not fetched')
    
    686
    -@click.argument('element',
    
    744
    +@click.argument('element', required=False,
    
    687 745
                     type=click.Path(readable=False))
    
    688
    -@click.argument('location', type=click.Path())
    
    746
    +@click.argument('location', type=click.Path(), required=False)
    
    689 747
     @click.pass_obj
    
    690 748
     def source_checkout(app, element, location, deps, fetch_, except_):
    
    691 749
         """Checkout sources of an element to the specified location
    
    692 750
         """
    
    751
    +    if not element and not location:
    
    752
    +        click.echo("ERROR: LOCATION is not specified", err=True)
    
    753
    +        sys.exit(-1)
    
    754
    +
    
    755
    +    if element and not location:
    
    756
    +        # Nasty hack to get around click's optional args
    
    757
    +        location = element
    
    758
    +        element = None
    
    759
    +
    
    693 760
         with app.initialized():
    
    761
    +        if not element:
    
    762
    +            element = app.context.guess_element()
    
    763
    +            if not element:
    
    764
    +                raise AppError('Missing argument "ELEMENT".')
    
    765
    +
    
    694 766
             app.stream.source_checkout(element,
    
    695 767
                                        location=location,
    
    696 768
                                        deps=deps,
    
    ... ... @@ -747,11 +819,15 @@ def workspace_open(app, no_checkout, force, track_, directory, elements):
    747 819
     def workspace_close(app, remove_dir, all_, elements):
    
    748 820
         """Close a workspace"""
    
    749 821
     
    
    750
    -    if not (all_ or elements):
    
    751
    -        click.echo('ERROR: no elements specified', err=True)
    
    752
    -        sys.exit(-1)
    
    753
    -
    
    754 822
         with app.initialized():
    
    823
    +        if not (all_ or elements):
    
    824
    +            # NOTE: I may need to revisit this when implementing multiple projects
    
    825
    +            # opening one workspace.
    
    826
    +            element = app.context.guess_element()
    
    827
    +            if element:
    
    828
    +                elements = (element,)
    
    829
    +            else:
    
    830
    +                raise AppError('No elements specified')
    
    755 831
     
    
    756 832
             # Early exit if we specified `all` and there are no workspaces
    
    757 833
             if all_ and not app.stream.workspace_exists():
    
    ... ... @@ -808,7 +884,11 @@ def workspace_reset(app, soft, track_, all_, elements):
    808 884
         with app.initialized():
    
    809 885
     
    
    810 886
             if not (all_ or elements):
    
    811
    -            raise AppError('No elements specified to reset')
    
    887
    +            element = app.context.guess_element()
    
    888
    +            if element:
    
    889
    +                elements = (element,)
    
    890
    +            else:
    
    891
    +                raise AppError('No elements specified to reset')
    
    812 892
     
    
    813 893
             if all_ and not app.stream.workspace_exists():
    
    814 894
                 raise AppError("No open workspaces to reset")
    

  • buildstream/_project.py
    ... ... @@ -228,7 +228,7 @@ class Project():
    228 228
                 'element-path', 'variables',
    
    229 229
                 'environment', 'environment-nocache',
    
    230 230
                 'split-rules', 'elements', 'plugins',
    
    231
    -            'aliases', 'name',
    
    231
    +            'aliases', 'name', 'defaults',
    
    232 232
                 'artifacts', 'options',
    
    233 233
                 'fail-on-overlap', 'shell', 'fatal-warnings',
    
    234 234
                 'ref-storage', 'sandbox', 'mirrors', 'remote-execution',
    
    ... ... @@ -391,6 +391,36 @@ class Project():
    391 391
             # Reset the element loader state
    
    392 392
             Element._reset_load_state()
    
    393 393
     
    
    394
    +
    
    395
    +    # get_default_elements()
    
    396
    +    #
    
    397
    +    # This function is used to gather either:
    
    398
    +    # The project default element (if defined in project.conf)
    
    399
    +    # or
    
    400
    +    # All elements in the project
    
    401
    +    #
    
    402
    +    def get_default_elements(self):
    
    403
    +        output = []
    
    404
    +
    
    405
    +        # The project is not required to have an element-path
    
    406
    +        element_directory = self._project_conf.get('element-path')
    
    407
    +
    
    408
    +        # The project may have a default element defined
    
    409
    +        default_element = self._project_conf.get("defaults", {}).get("target-element", None)
    
    410
    +
    
    411
    +        if default_element:
    
    412
    +            return (default_element,)
    
    413
    +
    
    414
    +        directory = os.path.join(self.directory, element_directory)
    
    415
    +        for root, _, files in os.walk(directory):
    
    416
    +            for file in files:
    
    417
    +                if file.endswith(".bst"):
    
    418
    +                    rel_dir = os.path.relpath(root, directory)
    
    419
    +                    rel_file = os.path.join(rel_dir, file).lstrip("./")
    
    420
    +                    output.append(rel_file)
    
    421
    +        return tuple(output)
    
    422
    +
    
    423
    +
    
    394 424
         # _load():
    
    395 425
         #
    
    396 426
         # Loads the project configuration file in the project
    

  • buildstream/_stream.py
    ... ... @@ -544,7 +544,8 @@ class Stream():
    544 544
                 if len(elements) != 1:
    
    545 545
                     raise StreamError("Exactly one element can be given if --directory is used",
    
    546 546
                                       reason='directory-with-multiple-elements')
    
    547
    -            expanded_directories = [custom_dir, ]
    
    547
    +            directory = os.path.abspath(custom_dir)
    
    548
    +            expanded_directories = [directory, ]
    
    548 549
             else:
    
    549 550
                 # If this fails it is a bug in what ever calls this, usually cli.py and so can not be tested for via the
    
    550 551
                 # run bst test mechanism.
    

  • buildstream/data/projectconfig.yaml
    ... ... @@ -167,3 +167,10 @@ shell:
    167 167
       # Command to run when `bst shell` does not provide a command
    
    168 168
       #
    
    169 169
       command: [ 'sh', '-i' ]
    
    170
    +
    
    171
    +# Default Targets
    
    172
    +#
    
    173
    +defaults:
    
    174
    +
    
    175
    +  # Set a Default element to build when none are defined
    
    176
    +  target-element: None

  • doc/sessions/developing.run
    ... ... @@ -24,6 +24,11 @@ commands:
    24 24
       output: ../source/sessions/developing-build-after-changes.html
    
    25 25
       command: build hello.bst
    
    26 26
     
    
    27
    +# Rebuild, from the workspace
    
    28
    +- directory: ../examples/developing/workspace_hello
    
    29
    +  output: ../source/sessions/developing-build-after-changes-workspace.html
    
    30
    +  command: build
    
    31
    +
    
    27 32
     # Capture shell output with changes
    
    28 33
     - directory: ../examples/developing/
    
    29 34
       output: ../source/sessions/developing-shell-after-changes.html
    

  • doc/source/developing/workspaces.rst
    ... ... @@ -50,11 +50,16 @@ We can open workspace_hello/hello.c and make the following change:
    50 50
     .. literalinclude:: ../../examples/developing/update.patch
    
    51 51
         :language: diff
    
    52 52
     
    
    53
    -Now, rebuild the hello.bst element
    
    53
    +Now, rebuild the hello.bst element.
    
    54 54
     
    
    55 55
     .. raw:: html
    
    56 56
        :file: ../sessions/developing-build-after-changes.html
    
    57 57
     
    
    58
    +Note that if you run the command from inside the workspace, the element name is optional.
    
    59
    +
    
    60
    +.. raw:: html
    
    61
    +   :file: ../sessions/developing-build-after-changes-workspace.html
    
    62
    +
    
    58 63
     Now running the hello command using bst shell:
    
    59 64
     
    
    60 65
     .. raw:: html
    

  • doc/source/sessions-stored/developing-build-after-changes-workspace.html
    1
    +<!--
    
    2
    +    WARNING: This file was generated with bst2html.py
    
    3
    +-->
    
    4
    +<div class="highlight" style="font-size:x-small"><pre>
    
    5
    +<span style="color:#C4A000;font-weight:bold">user@host</span>:<span style="color:#3456A4;font-weight:bold">~/workspace_hello</span>$ bst build
    
    6
    +
    
    7
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#3465A4"><span style=""><span style="opacity:0.5">START  </span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Build
    
    8
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#3465A4"><span style=""><span style="opacity:0.5">START  </span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Loading elements
    
    9
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#4E9A06"><span style=""><span style="opacity:0.5">SUCCESS</span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Loading elements
    
    10
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#3465A4"><span style=""><span style="opacity:0.5">START  </span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Resolving elements
    
    11
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#4E9A06"><span style=""><span style="opacity:0.5">SUCCESS</span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Resolving elements
    
    12
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#3465A4"><span style=""><span style="opacity:0.5">START  </span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Resolving cached state
    
    13
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#4E9A06"><span style=""><span style="opacity:0.5">SUCCESS</span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Resolving cached state
    
    14
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">--</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#3465A4"><span style=""><span style="opacity:0.5">START  </span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Checking sources
    
    15
    +<span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#4E9A06"><span style=""><span style="opacity:0.5">SUCCESS</span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Checking sources
    
    16
    +
    
    17
    +<span style="color:#C4A000"><span style="">BuildStream Version 1.3.0+1032.g41813d3a.dirty
    
    18
    +</span></span><span style="color:#06989A"><span style="opacity:0.5">  Session Start: </span></span><span style="color:#C4A000">Wednesday, 05-12-2018 at 16:47:38</span>
    
    19
    +<span style="color:#06989A"><span style="opacity:0.5">  Project:       </span></span><span style="color:#C4A000">developing (/home/user/workspace/buildstream/buildstream/doc/examples/developing)</span>
    
    20
    +<span style="color:#06989A"><span style="opacity:0.5">  Targets:       </span></span><span style="color:#C4A000">hello.bst</span>
    
    21
    +
    
    22
    +<span style="color:#C4A000"><span style="">User Configuration
    
    23
    +</span></span><span style="color:#06989A"><span style="opacity:0.5">  Configuration File:      </span></span><span style="color:#C4A000">/home/user/workspace/buildstream/buildstream/doc/run-bst-7ocq4_a7/buildstream.conf</span>
    
    24
    +<span style="color:#06989A"><span style="opacity:0.5">  Log Files:               </span></span><span style="color:#C4A000">/home/user/workspace/buildstream/buildstream/doc/run-bst-7ocq4_a7/logs</span>
    
    25
    +<span style="color:#06989A"><span style="opacity:0.5">  Source Mirrors:          </span></span><span style="color:#C4A000">/home/user/workspace/buildstream/buildstream/doc/run-bst-7ocq4_a7/sources</span>
    
    26
    +<span style="color:#06989A"><span style="opacity:0.5">  Build Area:              </span></span><span style="color:#C4A000">/home/user/workspace/buildstream/buildstream/doc/run-bst-7ocq4_a7/build</span>
    
    27
    +<span style="color:#06989A"><span style="opacity:0.5">  Artifact Cache:          </span></span><span style="color:#C4A000">/home/user/workspace/buildstream/buildstream/doc/run-bst-7ocq4_a7/artifacts</span>
    
    28
    +<span style="color:#06989A"><span style="opacity:0.5">  Strict Build Plan:       </span></span><span style="color:#C4A000">Yes</span>
    
    29
    +<span style="color:#06989A"><span style="opacity:0.5">  Maximum Fetch Tasks:     </span></span><span style="color:#C4A000">10</span>
    
    30
    +<span style="color:#06989A"><span style="opacity:0.5">  Maximum Build Tasks:     </span></span><span style="color:#C4A000">4</span>
    
    31
    +<span style="color:#06989A"><span style="opacity:0.5">  Maximum Push Tasks:      </span></span><span style="color:#C4A000">4</span>
    
    32
    +<span style="color:#06989A"><span style="opacity:0.5">  Maximum Network Retries: </span></span><span style="color:#C4A000">2</span>
    
    33
    +
    
    34
    +<span style="color:#C4A000"><span style="">Pipeline
    
    35
    +</span></span><span style="color:#75507B">      cached</span> <span style="color:#C4A000">9afe69d645f0bee106749bc2101aae16ef437bb51e1b343ef1f16f04f0572efb</span> <span style="color:#3465A4"><span style="">base/alpine.bst</span></span> 
    
    36
    +<span style="color:#75507B">      cached</span> <span style="color:#C4A000">19f7c50c7a1db9ae4babe9d1f34f4cdbbf2428827d48673861fd1452d6c7e16b</span> <span style="color:#3465A4"><span style="">base.bst</span></span> 
    
    37
    +<span style="color:#75507B">      cached</span> <span style="color:#C4A000">faa419610e7309d36d15926a81a8d75bbc113443c23c8162e63843dd86b5f56a</span> <span style="color:#3465A4"><span style="">hello.bst</span></span> Workspace: /home/user/workspace/buildstream/buildstream/doc/examples/developing/workspace_hello
    
    38
    +<span style="color:#06989A"><span style="opacity:0.5">===============================================================================
    
    39
    +</span></span><span style="color:#06989A"><span style="opacity:0.5">[</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">:</span></span><span style="color:#C4A000">00</span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">][</span></span><span style="color:#06989A"><span style="opacity:0.5">] </span></span><span style="color:#4E9A06"><span style=""><span style="opacity:0.5">SUCCESS</span></span></span><span style="color:#06989A"><span style="opacity:0.5"> </span></span>Build
    
    40
    +
    
    41
    +<span style="color:#C4A000"><span style="">Pipeline Summary
    
    42
    +</span></span><span style="color:#06989A"><span style="opacity:0.5">  Total:       </span></span><span style="color:#C4A000">3</span>
    
    43
    +<span style="color:#06989A"><span style="opacity:0.5">  Session:     </span></span><span style="color:#C4A000">0</span>
    
    44
    +<span style="color:#06989A"><span style="opacity:0.5">  Fetch Queue: </span></span><span style="color:#C4A000">processed </span><span style="color:#4E9A06">0</span><span style="color:#06989A"><span style="opacity:0.5">, </span></span><span style="color:#C4A000">skipped </span><span style="color:#C4A000">0</span><span style="color:#06989A"><span style="opacity:0.5">, </span></span><span style="color:#C4A000">failed </span><span style="color:#CC0000"><span style="opacity:0.5">0</span></span> 
    
    45
    +<span style="color:#06989A"><span style="opacity:0.5">  Build Queue: </span></span><span style="color:#C4A000">processed </span><span style="color:#4E9A06">0</span><span style="color:#06989A"><span style="opacity:0.5">, </span></span><span style="color:#C4A000">skipped </span><span style="color:#C4A000">0</span><span style="color:#06989A"><span style="opacity:0.5">, </span></span><span style="color:#C4A000">failed </span><span style="color:#CC0000"><span style="opacity:0.5">0</span></span>
    
    46
    +</pre></div>

  • tests/frontend/project_default/elements/target.bst
    1
    +kind: stack
    
    2
    +description: |
    
    3
    +
    
    4
    +  Main stack target for the bst build test

  • tests/frontend/project_default/elements/target2.bst
    1
    +kind: stack
    
    2
    +description: |
    
    3
    +
    
    4
    +  Main stack target for the bst build test

  • tests/frontend/project_default/project.conf
    1
    +# Project config for frontend build test
    
    2
    +name: test
    
    3
    +
    
    4
    +element-path: elements
    
    5
    +
    
    6
    +fatal-warnings:
    
    7
    +- bad-element-suffix
    
    8
    +
    
    9
    +defaults:
    
    10
    + target-element: target2.bst

  • tests/frontend/project_fail/elements/compose-all.bst
    1
    +kind: compose
    
    2
    +
    
    3
    +depends:
    
    4
    +- fileNAME: import-dev.bst
    
    5
    +  type: build
    
    6
    +
    
    7
    +config:
    
    8
    +  # Dont try running the sandbox, we dont have a
    
    9
    +  # runtime to run anything in this context.
    
    10
    +  integrate: False

  • tests/frontend/project_fail/elements/import-dev.bst
    1
    +kind: import
    
    2
    +sources:
    
    3
    +- kind: local
    
    4
    +  path: files/dev-files

  • tests/frontend/project_fail/elements/target.bst
    1
    +kind: stack
    
    2
    +description: |
    
    3
    +
    
    4
    +  Main stack target for the bst build test
    
    5
    +
    
    6
    +depends:
    
    7
    +- compose-all.bst

  • tests/frontend/project_fail/files/dev-files/usr/include/pony.h
    1
    +#ifndef __PONY_H__
    
    2
    +#define __PONY_H__
    
    3
    +
    
    4
    +#define PONY_BEGIN "Once upon a time, there was a pony."
    
    5
    +#define PONY_END "And they lived happily ever after, the end."
    
    6
    +
    
    7
    +#define MAKE_PONY(story)  \
    
    8
    +  PONY_BEGIN \
    
    9
    +  story \
    
    10
    +  PONY_END
    
    11
    +
    
    12
    +#endif /* __PONY_H__ */

  • tests/frontend/project_fail/project.conf
    1
    +# Project config for frontend build test
    
    2
    +name: test
    
    3
    +
    
    4
    +element-path: elements

  • tests/frontend/show.py
    ... ... @@ -46,6 +46,27 @@ def test_show_invalid_element_path(cli, datafiles):
    46 46
             'show',
    
    47 47
             "foo.bst"])
    
    48 48
     
    
    49
    +
    
    50
    +@pytest.mark.datafiles(DATA_DIR + "_default")
    
    51
    +def test_show_default(cli, datafiles):
    
    52
    +    project = os.path.join(datafiles.dirname, datafiles.basename)
    
    53
    +    result = cli.run(project=project, cwd=project, silent=True, args=[
    
    54
    +        'show'])
    
    55
    +
    
    56
    +    result.assert_success()
    
    57
    +
    
    58
    +    # Get the result output of "[state sha element]" and turn into a list 
    
    59
    +    results = result.output.strip().splitlines().split(" ")
    
    60
    +    expected = 'target2.bst'
    
    61
    +    assert results[2] == expected
    
    62
    +
    
    63
    +
    
    64
    +@pytest.mark.datafiles(DATA_DIR + "_fail")
    
    65
    +def test_show_fail(cli, datafiles):
    
    66
    +    project = os.path.join(datafiles.dirname, datafiles.basename)
    
    67
    +    result = cli.run(project=project, cwd=project, silent=True, args=[
    
    68
    +        'show'])
    
    69
    +
    
    49 70
         result.assert_main_error(ErrorDomain.LOAD, LoadErrorReason.INVALID_DATA)
    
    50 71
     
    
    51 72
     
    

  • tests/frontend/source_checkout.py
    ... ... @@ -28,19 +28,28 @@ def generate_remote_import_element(input_path, output_path):
    28 28
     
    
    29 29
     
    
    30 30
     @pytest.mark.datafiles(DATA_DIR)
    
    31
    -@pytest.mark.parametrize('with_workspace', [('workspace'), ('no-workspace')])
    
    32
    -def test_source_checkout(datafiles, tmpdir_factory, cli, with_workspace):
    
    31
    +@pytest.mark.parametrize(
    
    32
    +    "with_workspace,guess_element",
    
    33
    +    [(True, True), (True, False), (False, False)],
    
    34
    +    ids=["workspace-guess", "workspace-no-guess", "no-workspace-no-guess"]
    
    35
    +)
    
    36
    +def test_source_checkout(datafiles, cli, tmpdir_factory, with_workspace, guess_element):
    
    33 37
         tmpdir = tmpdir_factory.mktemp("")
    
    34 38
         project = os.path.join(datafiles.dirname, datafiles.basename)
    
    35 39
         checkout = os.path.join(cli.directory, 'source-checkout')
    
    36 40
         target = 'checkout-deps.bst'
    
    37 41
         workspace = os.path.join(str(tmpdir), 'workspace')
    
    42
    +    elm_cmd = [target] if not guess_element else []
    
    38 43
     
    
    39
    -    if with_workspace == "workspace":
    
    40
    -        result = cli.run(project=project, args=['workspace', 'open', '--directory', workspace, target])
    
    44
    +    if with_workspace:
    
    45
    +        ws_cmd = ['-C', workspace]
    
    46
    +        result = cli.run(project=project, args=["workspace", "open", "--directory", workspace, target])
    
    41 47
             result.assert_success()
    
    48
    +    else:
    
    49
    +        ws_cmd = []
    
    42 50
     
    
    43
    -    result = cli.run(project=project, args=['source-checkout', target, '--deps', 'none', checkout])
    
    51
    +    args = ws_cmd + ['source-checkout', '--deps', 'none'] + elm_cmd + [checkout]
    
    52
    +    result = cli.run(project=project, args=args)
    
    44 53
         result.assert_success()
    
    45 54
     
    
    46 55
         assert os.path.exists(os.path.join(checkout, 'checkout-deps', 'etc', 'buildstream', 'config'))
    

  • tests/frontend/workspace.py
    ... ... @@ -616,12 +616,16 @@ def test_list(cli, tmpdir, datafiles):
    616 616
     @pytest.mark.datafiles(DATA_DIR)
    
    617 617
     @pytest.mark.parametrize("kind", repo_kinds)
    
    618 618
     @pytest.mark.parametrize("strict", [("strict"), ("non-strict")])
    
    619
    -@pytest.mark.parametrize("call_from", [("project"), ("workspace")])
    
    620
    -def test_build(cli, tmpdir_factory, datafiles, kind, strict, call_from):
    
    619
    +@pytest.mark.parametrize(
    
    620
    +    "from_workspace,guess_element",
    
    621
    +    [(False, False), (True, True), (True, False)],
    
    622
    +    ids=["project-no-guess", "workspace-guess", "workspace-no-guess"])
    
    623
    +def test_build(cli, tmpdir_factory, datafiles, kind, strict, from_workspace, guess_element):
    
    621 624
         tmpdir = tmpdir_factory.mktemp('')
    
    622 625
         element_name, project, workspace = open_workspace(cli, tmpdir, datafiles, kind, False)
    
    623 626
         checkout = os.path.join(str(tmpdir), 'checkout')
    
    624
    -    args_pre = ['-C', workspace] if call_from == "workspace" else []
    
    627
    +    args_dir = ['-C', workspace] if from_workspace else []
    
    628
    +    args_elm = [element_name] if not guess_element else []
    
    625 629
     
    
    626 630
         # Modify workspace
    
    627 631
         shutil.rmtree(os.path.join(workspace, 'usr', 'bin'))
    
    ... ... @@ -644,14 +648,14 @@ def test_build(cli, tmpdir_factory, datafiles, kind, strict, call_from):
    644 648
         # Build modified workspace
    
    645 649
         assert cli.get_element_state(project, element_name) == 'buildable'
    
    646 650
         assert cli.get_element_key(project, element_name) == "{:?<64}".format('')
    
    647
    -    result = cli.run(project=project, args=args_pre + ['build', element_name])
    
    651
    +    result = cli.run(project=project, args=args_dir + ['build'] + args_elm)
    
    648 652
         result.assert_success()
    
    649 653
         assert cli.get_element_state(project, element_name) == 'cached'
    
    650 654
         assert cli.get_element_key(project, element_name) != "{:?<64}".format('')
    
    651 655
     
    
    652 656
         # Checkout the result
    
    653 657
         result = cli.run(project=project,
    
    654
    -                     args=args_pre + ['checkout', element_name, checkout])
    
    658
    +                     args=args_dir + ['checkout'] + args_elm + [checkout])
    
    655 659
         result.assert_success()
    
    656 660
     
    
    657 661
         # Check that the pony.conf from the modified workspace exists
    
    ... ... @@ -1062,29 +1066,36 @@ def test_multiple_failed_builds(cli, tmpdir, datafiles):
    1062 1066
     
    
    1063 1067
     @pytest.mark.datafiles(DATA_DIR)
    
    1064 1068
     @pytest.mark.parametrize('subdir', [True, False], ids=["subdir", "no-subdir"])
    
    1065
    -def test_external_fetch(cli, datafiles, tmpdir_factory, subdir):
    
    1069
    +@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
    
    1070
    +def test_external_fetch(cli, datafiles, tmpdir_factory, subdir, guess_element):
    
    1066 1071
         # Fetching from a workspace outside a project doesn't fail horribly
    
    1067 1072
         tmpdir = tmpdir_factory.mktemp('')
    
    1068 1073
         element_name, project, workspace = open_workspace(cli, tmpdir, datafiles, "git", False)
    
    1074
    +    arg_elm = [element_name] if not guess_element else []
    
    1069 1075
     
    
    1070 1076
         if subdir:
    
    1071 1077
             call_dir = os.path.join(workspace, 'usr')
    
    1072 1078
         else:
    
    1073 1079
             call_dir = workspace
    
    1074 1080
     
    
    1075
    -    result = cli.run(project=project, args=['-C', call_dir, 'fetch', element_name])
    
    1081
    +    result = cli.run(project=project, args=['-C', call_dir, 'fetch'] + arg_elm)
    
    1076 1082
         result.assert_success()
    
    1077 1083
     
    
    1078 1084
         # We already fetched it by opening the workspace, but we're also checking
    
    1079 1085
         # `bst show` works here
    
    1080
    -    assert cli.get_element_state(project, element_name) == 'buildable'
    
    1086
    +    result = cli.run(project=project,
    
    1087
    +                     args=['-C', call_dir, 'show', '--deps', 'none', '--format', '%{state}'] + arg_elm)
    
    1088
    +    result.assert_success()
    
    1089
    +    assert result.output.strip() == 'buildable'
    
    1081 1090
     
    
    1082 1091
     
    
    1083 1092
     @pytest.mark.datafiles(DATA_DIR)
    
    1084
    -def test_external_push_pull(cli, datafiles, tmpdir_factory):
    
    1093
    +@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
    
    1094
    +def test_external_push_pull(cli, datafiles, tmpdir_factory, guess_element):
    
    1085 1095
         # Pushing and pulling to/from an artifact cache works from an external workspace
    
    1086 1096
         tmpdir = tmpdir_factory.mktemp('')
    
    1087 1097
         element_name, project, workspace = open_workspace(cli, tmpdir, datafiles, "git", False)
    
    1098
    +    arg_elm = [element_name] if not guess_element else []
    
    1088 1099
     
    
    1089 1100
         with create_artifact_share(os.path.join(str(tmpdir), 'artifactshare')) as share:
    
    1090 1101
             result = cli.run(project=project, args=['-C', workspace, 'build', element_name])
    
    ... ... @@ -1094,22 +1105,24 @@ def test_external_push_pull(cli, datafiles, tmpdir_factory):
    1094 1105
                 'artifacts': {'url': share.repo, 'push': True}
    
    1095 1106
             })
    
    1096 1107
     
    
    1097
    -        result = cli.run(project=project, args=['-C', workspace, 'push', element_name])
    
    1108
    +        result = cli.run(project=project, args=['-C', workspace, 'push'] + arg_elm)
    
    1098 1109
             result.assert_success()
    
    1099 1110
     
    
    1100
    -        result = cli.run(project=project, args=['-C', workspace, 'pull', '--deps', 'all', element_name])
    
    1111
    +        result = cli.run(project=project, args=['-C', workspace, 'pull', '--deps', 'all'] + arg_elm)
    
    1101 1112
             result.assert_success()
    
    1102 1113
     
    
    1103 1114
     
    
    1104 1115
     @pytest.mark.datafiles(DATA_DIR)
    
    1105
    -def test_external_track(cli, datafiles, tmpdir_factory):
    
    1116
    +@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
    
    1117
    +def test_external_track(cli, datafiles, tmpdir_factory, guess_element):
    
    1106 1118
         # Tracking does not get horribly confused
    
    1107 1119
         tmpdir = tmpdir_factory.mktemp('')
    
    1108 1120
         element_name, project, workspace = open_workspace(cli, tmpdir, datafiles, "git", True)
    
    1121
    +    arg_elm = [element_name] if not guess_element else []
    
    1109 1122
     
    
    1110 1123
         # The workspace is necessarily already tracked, so we only care that
    
    1111 1124
         # there's no weird errors.
    
    1112
    -    result = cli.run(project=project, args=['-C', workspace, 'track', element_name])
    
    1125
    +    result = cli.run(project=project, args=['-C', workspace, 'track'] + arg_elm)
    
    1113 1126
         result.assert_success()
    
    1114 1127
     
    
    1115 1128
     
    
    ... ... @@ -1147,15 +1160,17 @@ def test_external_close_other(cli, datafiles, tmpdir_factory):
    1147 1160
     
    
    1148 1161
     
    
    1149 1162
     @pytest.mark.datafiles(DATA_DIR)
    
    1150
    -def test_external_close_self(cli, datafiles, tmpdir_factory):
    
    1163
    +@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
    
    1164
    +def test_external_close_self(cli, datafiles, tmpdir_factory, guess_element):
    
    1151 1165
         # >From inside an external workspace, close it
    
    1152 1166
         tmpdir1 = tmpdir_factory.mktemp('')
    
    1153 1167
         tmpdir2 = tmpdir_factory.mktemp('')
    
    1154 1168
         # Making use of the assumption that it's the same project in both invocations of open_workspace
    
    1155 1169
         alpha_element, project, alpha_workspace = open_workspace(cli, tmpdir1, datafiles, "git", False, suffix="-alpha")
    
    1156 1170
         beta_element, _, beta_workspace = open_workspace(cli, tmpdir2, datafiles, "git", False, suffix="-beta")
    
    1171
    +    arg_elm = [alpha_element] if not guess_element else []
    
    1157 1172
     
    
    1158
    -    result = cli.run(project=project, args=['-C', alpha_workspace, 'workspace', 'close', alpha_element])
    
    1173
    +    result = cli.run(project=project, args=['-C', alpha_workspace, 'workspace', 'close'] + arg_elm)
    
    1159 1174
         result.assert_success()
    
    1160 1175
     
    
    1161 1176
     
    
    ... ... @@ -1172,11 +1187,13 @@ def test_external_reset_other(cli, datafiles, tmpdir_factory):
    1172 1187
     
    
    1173 1188
     
    
    1174 1189
     @pytest.mark.datafiles(DATA_DIR)
    
    1175
    -def test_external_reset_self(cli, datafiles, tmpdir):
    
    1190
    +@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
    
    1191
    +def test_external_reset_self(cli, datafiles, tmpdir, guess_element):
    
    1176 1192
         element, project, workspace = open_workspace(cli, tmpdir, datafiles, "git", False)
    
    1193
    +    arg_elm = [element] if not guess_element else []
    
    1177 1194
     
    
    1178 1195
         # Command succeeds
    
    1179
    -    result = cli.run(project=project, args=['-C', workspace, 'workspace', 'reset', element])
    
    1196
    +    result = cli.run(project=project, args=['-C', workspace, 'workspace', 'reset'] + arg_elm)
    
    1180 1197
         result.assert_success()
    
    1181 1198
     
    
    1182 1199
         # Successive commands still work (i.e. .bstproject.yaml hasn't been deleted)
    

  • tests/integration/shell.py
    ... ... @@ -358,13 +358,22 @@ def test_integration_devices(cli, tmpdir, datafiles):
    358 358
     # Test that a shell can be opened from an external workspace
    
    359 359
     @pytest.mark.datafiles(DATA_DIR)
    
    360 360
     @pytest.mark.parametrize("build_shell", [("build"), ("nobuild")])
    
    361
    +@pytest.mark.parametrize("guess_element", [True, False], ids=["guess", "no-guess"])
    
    361 362
     @pytest.mark.skipif(IS_LINUX and not HAVE_BWRAP, reason='Only available with bubblewrap on Linux')
    
    362
    -def test_integration_external_workspace(cli, tmpdir_factory, datafiles, build_shell):
    
    363
    +def test_integration_external_workspace(cli, tmpdir_factory, datafiles, build_shell, guess_element):
    
    363 364
         tmpdir = tmpdir_factory.mktemp("")
    
    364 365
         project = os.path.join(datafiles.dirname, datafiles.basename)
    
    365 366
         element_name = 'autotools/amhello.bst'
    
    366 367
         workspace_dir = os.path.join(str(tmpdir), 'workspace')
    
    367 368
     
    
    369
    +    if guess_element:
    
    370
    +        # Mutate the project.conf to use a default shell command
    
    371
    +        project_file = os.path.join(project, 'project.conf')
    
    372
    +        config_text = "shell:\n"\
    
    373
    +                      "  command: ['true']\n"
    
    374
    +        with open(project_file, 'a') as f:
    
    375
    +            f.write(config_text)
    
    376
    +
    
    368 377
         result = cli.run(project=project, args=[
    
    369 378
             'workspace', 'open', '--directory', workspace_dir, element_name
    
    370 379
         ])
    
    ... ... @@ -373,9 +382,10 @@ def test_integration_external_workspace(cli, tmpdir_factory, datafiles, build_sh
    373 382
         result = cli.run(project=project, args=['-C', workspace_dir, 'build', element_name])
    
    374 383
         result.assert_success()
    
    375 384
     
    
    376
    -    command = ['shell']
    
    385
    +    command = ['-C', workspace_dir, 'shell']
    
    377 386
         if build_shell == 'build':
    
    378 387
             command.append('--build')
    
    379
    -    command.extend([element_name, '--', 'true'])
    
    388
    +    if not guess_element:
    
    389
    +        command.extend([element_name, '--', 'true'])
    
    380 390
         result = cli.run(project=project, cwd=workspace_dir, args=command)
    
    381 391
         result.assert_success()



  • [Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]