blob: ed46efd8eb7b7915ff989cb533c57d53ee4a8433 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License
#include <string>
#include "tests/allocator.hpp"
using std::string;
namespace mesos {
namespace internal {
namespace tests {
Quota createQuota(const string& guarantees, const string& limits)
{
Quota quota;
quota.guarantees = CHECK_NOTERROR(ResourceQuantities::fromString(guarantees));
quota.limits = CHECK_NOTERROR(ResourceLimits::fromString(limits));
return quota;
}
Quota createQuota(const string& resources)
{
return createQuota(resources, resources);
}
WeightInfo createWeightInfo(const string& role, double weight)
{
WeightInfo weightInfo;
weightInfo.set_role(role);
weightInfo.set_weight(weight);
return weightInfo;
}
} // namespace tests {
} // namespace internal {
} // namespace mesos {