Page MenuHomePhabricator

Validate resource attributes for preallocated hosts before executing leases
ClosedPublic

Authored by hach-que on Dec 4 2013, 5:49 AM.
Tags
None
Referenced Files
F15467067: D7695.diff
Thu, Apr 3, 12:30 PM
F15462737: D7695.id17388.diff
Tue, Apr 1, 5:16 PM
F15458569: D7695.id17388.diff
Mon, Mar 31, 4:56 AM
F15458265: D7695.id17390.diff
Sun, Mar 30, 10:17 PM
F15458068: D7695.id17388.diff
Sun, Mar 30, 8:37 PM
F15458067: D7695.id17378.diff
Sun, Mar 30, 8:37 PM
F15458066: D7695.id.diff
Sun, Mar 30, 8:37 PM
F15457971: D7695.diff
Sun, Mar 30, 8:18 PM

Details

Summary

This prevents issues when the user hasn't provided the appropriate attributes for a preallocated host.

Test Plan

Attempted to lease against a resource with omitted attributes, got an exception thrown before any SSH commands occurred.

Diff Detail

Lint
Lint Skipped
Unit
Tests Skipped

Event Timeline

Hmm, this might be a little cleaner and more powerful?

PhutilTypeSpec::checkMap(
  $this->getAttributes('platform', 'host', 'port', 'user', 'path'),
  array(
    'platform' => 'required string',
    'host' => 'required string',
    'port' => 'required int',
    'user' => 'required string',
    'path' => 'required string',
  ));

Then write getAttributes() as:

return array_select_keys($this->attributes, $attribute_names);
hach-que updated this revision to Unknown Object (????).Dec 4 2013, 9:08 PM

Update validation according to feedback