You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/db/sqltest/tests/target/target_ssh.sql

22 lines
772 B

-- Copyright (c) HashiCorp, Inc.
-- SPDX-License-Identifier: BUSL-1.1
begin;
select plan(4);
select wtt_load('widgets', 'iam', 'kms', 'auth', 'hosts', 'targets');
insert into target_ssh
(project_id, public_id, name)
values
('p____bwidget', 'tssh______wb', 'Big Widget SSH Target'),
('p____swidget', 'tssh______ws', 'Small Widget SSH Target');
select is(count(*), 1::bigint) from target_all_subtypes where public_id = 'tssh______wb';
select is(type, 'ssh') from target_all_subtypes where public_id = 'tssh______wb';
select is(count(*), 1::bigint) from target_all_subtypes where public_id = 't_________wb';
select is(type, 'tcp') from target_all_subtypes where public_id = 't_________wb';
select * from finish();
rollback;