Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: result of add service contains a name property #314

Merged
merged 5 commits into from
Mar 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func (builtin *AddServiceCapabilities) Interpret(arguments *builtin_argument.Arg
return nil, startosis_errors.WrapWithInterpretationError(err, "Unable to create runtime value to hold '%v' command return values", AddServiceBuiltinName)
}

returnValue, interpretationErr := makeAddServiceInterpretationReturnValue(builtin.serviceConfig, builtin.resultUuid)
returnValue, interpretationErr := makeAddServiceInterpretationReturnValue(serviceName, builtin.serviceConfig, builtin.resultUuid)
if interpretationErr != nil {
return nil, interpretationErr
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ func fillAddServiceReturnValueWithRuntimeValues(service *service.Service, result
})
}

func makeAddServiceInterpretationReturnValue(serviceConfig *kurtosis_core_rpc_api_bindings.ServiceConfig, resultUuid string) (*kurtosis_types.Service, *startosis_errors.InterpretationError) {
func makeAddServiceInterpretationReturnValue(serviceName starlark.String, serviceConfig *kurtosis_core_rpc_api_bindings.ServiceConfig, resultUuid string) (*kurtosis_types.Service, *startosis_errors.InterpretationError) {
ports := serviceConfig.GetPrivatePorts()
portSpecsDict := starlark.NewDict(len(ports))
for portId, port := range ports {
Expand All @@ -54,7 +54,7 @@ func makeAddServiceInterpretationReturnValue(serviceConfig *kurtosis_core_rpc_ap
}
ipAddress := starlark.String(fmt.Sprintf(magic_string_helper.RuntimeValueReplacementPlaceholderFormat, resultUuid, ipAddressRuntimeValue))
hostname := starlark.String(fmt.Sprintf(magic_string_helper.RuntimeValueReplacementPlaceholderFormat, resultUuid, hostnameRuntimeValue))
returnValue := kurtosis_types.NewService(hostname, ipAddress, portSpecsDict)
returnValue := kurtosis_types.NewService(serviceName, hostname, ipAddress, portSpecsDict)
return returnValue, nil
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ func makeAddServicesInterpretationReturnValue(serviceConfigs map[service.Service
if err != nil {
return nil, nil, startosis_errors.WrapWithInterpretationError(err, "Unable to create runtime value to hold '%v' command return values", AddServicesBuiltinName)
}
serviceObject, interpretationErr := makeAddServiceInterpretationReturnValue(serviceConfig, resultUuids[serviceName])
serviceObject, interpretationErr := makeAddServiceInterpretationReturnValue(serviceNameStr, serviceConfig, resultUuids[serviceName])
if interpretationErr != nil {
return nil, nil, interpretationErr
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func (t *addServiceTestCase) Assert(interpretationResult starlark.Value, executi
serviceObj, ok := interpretationResult.(*kurtosis_types.Service)
require.True(t, ok, "interpretation result should be a dictionary")
require.NotNil(t, serviceObj)
expectedServiceObj := fmt.Sprintf(`Service\(hostname = "{{kurtosis:[0-9a-f]{32}:hostname.runtime_value}}", ip_address = "{{kurtosis:[0-9a-f]{32}:ip_address.runtime_value}}", ports = {%q: PortSpec\(number=%d, transport_protocol=%q, application_protocol=%q\)}\)`, TestPrivatePortId, TestPrivatePortNumber, TestPrivatePortProtocolStr, TestPrivateApplicationProtocol)
expectedServiceObj := fmt.Sprintf(`Service\(hostname = "{{kurtosis:[0-9a-f]{32}:hostname.runtime_value}}", ip_address = "{{kurtosis:[0-9a-f]{32}:ip_address.runtime_value}}", name = "%v", ports = {%q: PortSpec\(number=%d, transport_protocol=%q, application_protocol=%q\)}\)`, TestServiceName, TestPrivatePortId, TestPrivatePortNumber, TestPrivatePortProtocolStr, TestPrivateApplicationProtocol)
require.Regexp(t, expectedServiceObj, serviceObj.String())

expectedExecutionResult := fmt.Sprintf("Service '%s' added with service UUID '%s'", TestServiceName, TestServiceUuid)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ import (
const (
serviceTypeName = "Service"

hostnameAttr = "hostname"
ipAddressAttr = "ip_address"
portsAttr = "ports"
hostnameAttr = "hostname"
ipAddressAttr = "ip_address"
portsAttr = "ports"
serviceNameAttr = "name"
)

// Service is just a wrapper around a regular starlarkstruct.Struct
Expand All @@ -21,11 +22,12 @@ type Service struct {
*starlarkstruct.Struct
}

func NewService(hostname starlark.String, ipAddress starlark.String, ports *starlark.Dict) *Service {
func NewService(serviceName starlark.String, hostname starlark.String, ipAddress starlark.String, ports *starlark.Dict) *Service {
structDict := starlark.StringDict{
hostnameAttr: hostname,
ipAddressAttr: ipAddress,
portsAttr: ports,
serviceNameAttr: serviceName,
hostnameAttr: hostname,
ipAddressAttr: ipAddress,
portsAttr: ports,
}
return &Service{
Struct: starlarkstruct.FromStringDict(starlark.String(serviceTypeName), structDict),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,20 @@ const (
testInvalidAttr = "invalid-test-attr"
httpApplicationProtocol = "http"
emptyApplicationProtocol = ""
serviceNameTestValue = starlark.String("test-service")
)

func TestService_StringRepresentation(t *testing.T) {
service, err := createTestServiceType()
require.Nil(t, err)
expectedStr := `Service(hostname = "datastore-1", ip_address = "{{kurtosis:service_name.ip_address}}", ports = {"grpc": PortSpec(number=123, transport_protocol="TCP")})`
expectedStr := `Service(hostname = "datastore-1", ip_address = "{{kurtosis:service_name.ip_address}}", name = "test-service", ports = {"grpc": PortSpec(number=123, transport_protocol="TCP")})`
require.Equal(t, expectedStr, service.String())
}

func TestService_StringRepresentationWithApplicationProtocol(t *testing.T) {
service, err := createTestServiceTypeWithApplicationProtocol()
require.Nil(t, err)
expectedStr := `Service(hostname = "datastore-1", ip_address = "{{kurtosis:service_name.ip_address}}", ports = {"grpc": PortSpec(number=123, transport_protocol="TCP", application_protocol="http")})`
expectedStr := `Service(hostname = "datastore-1", ip_address = "{{kurtosis:service_name.ip_address}}", name = "test-service", ports = {"grpc": PortSpec(number=123, transport_protocol="TCP", application_protocol="http")})`
require.Equal(t, expectedStr, service.String())
}

Expand Down Expand Up @@ -78,7 +79,7 @@ func TestService_TestAttrNames(t *testing.T) {
service, err := createTestServiceType()
require.Nil(t, err)
attrNames := service.AttrNames()
require.Equal(t, []string{hostnameAttr, ipAddressAttr, portsAttr}, attrNames)
require.Equal(t, []string{hostnameAttr, ipAddressAttr, serviceNameAttr, portsAttr}, attrNames)
}

func createTestServiceType() (*Service, error) {
Expand All @@ -90,7 +91,7 @@ func createTestServiceType() (*Service, error) {
if err := ports.SetKey(starlark.String("grpc"), portSpec); err != nil {
return nil, err
}
service := NewService(hostnameTestValue, ipAddressTestValue, ports)
service := NewService(serviceNameTestValue, hostnameTestValue, ipAddressTestValue, ports)
return service, nil
}

Expand All @@ -103,6 +104,6 @@ func createTestServiceTypeWithApplicationProtocol() (*Service, error) {
if err := ports.SetKey(starlark.String("grpc"), portSpec); err != nil {
return nil, err
}
service := NewService(hostnameTestValue, ipAddressTestValue, ports)
service := NewService(serviceNameTestValue, hostnameTestValue, ipAddressTestValue, ports)
return service, nil
}
1 change: 1 addition & 0 deletions docs/docs/reference/starlark-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ The `add_service` function returns a `service` object that contains service info
- A `hostname` property representing [a future reference][future-references-reference] to the service's hostname.
- An `ip_address` property representing [a future reference][future-references-reference] to the service's IP address.
- A `ports` dictionary containing [future reference][future-references-reference] information about each port that the service is listening on.
- A `name` property representing the name of the service.

The value of the `ports` dictionary is an object with three properties, `number`, `transport_protocol` and `application_protocol` (optional), which themselves are [future references][future-references-reference].

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ def run(plan, args):
}
)

plan.add_service(service_name = DATASTORE_SERVICE_NAME, config = config)
plan.print("Service " + DATASTORE_SERVICE_NAME + " deployed successfully.")
result = plan.add_service(service_name = DATASTORE_SERVICE_NAME, config = config)
plan.print("Service " + result.name + " deployed successfully.")
plan.exec(
recipe = ExecRecipe(
command = ["touch", FILE_TO_BE_CREATED],
Expand Down