-- S7 e2e smoke seed — v3 schema (Raw tree: DriverInstance → Device → Tag; UNS by reference). -- -- Idempotent DELETE-and-recreate of one cluster's worth of S7 test config pointing at the snap7 -- fixture (127.0.0.1:1102). v3: the ConfigGeneration/Namespace model + sp_PublishGeneration are -- gone; the endpoint (Host/Port/Rack/Slot) moved from DriverConfig into the Device's DeviceConfig. -- -- After seeding: set Server appsettings Node:NodeId/ClusterId, deploy via the ControlPlane, then -- `./scripts/e2e/test-s7.ps1 -BridgeNodeId "ns=2;s=DB1_DBW0" -S7Host "127.0.0.1:1102"`. SET NOCOUNT ON; SET XACT_ABORT ON; SET QUOTED_IDENTIFIER ON; SET ANSI_NULLS ON; DECLARE @ClusterId nvarchar(64) = 's7-smoke'; DECLARE @NodeId nvarchar(64) = 's7-smoke-node'; DECLARE @DrvId nvarchar(64) = 's7-smoke-drv'; DECLARE @DevId nvarchar(64) = 's7-smoke-dev'; DECLARE @AreaId nvarchar(64) = 's7-smoke-area'; DECLARE @LineId nvarchar(64) = 's7-smoke-line'; DECLARE @EqId nvarchar(64) = 's7-smoke-eq'; DECLARE @EqUuid uniqueidentifier = '5717A5E0-5717-45E0-9571-7A5E05717A5E'; DECLARE @Tag nvarchar(64) = 's7-smoke-tag-db1dbw0'; DECLARE @RefId nvarchar(64) = 's7-smoke-ref-db1dbw0'; BEGIN TRAN; DELETE FROM dbo.UnsTagReference WHERE UnsTagReferenceId = @RefId; DELETE FROM dbo.Tag WHERE TagId = @Tag; DELETE FROM dbo.Equipment WHERE EquipmentId = @EqId; DELETE FROM dbo.UnsLine WHERE UnsLineId = @LineId; DELETE FROM dbo.UnsArea WHERE UnsAreaId = @AreaId; DELETE FROM dbo.Device WHERE DeviceId = @DevId; DELETE FROM dbo.DriverInstance WHERE DriverInstanceId = @DrvId; DELETE FROM dbo.ClusterNodeCredential WHERE NodeId = @NodeId; DELETE FROM dbo.ClusterNode WHERE NodeId = @NodeId; DELETE FROM dbo.ServerCluster WHERE ClusterId = @ClusterId; DELETE FROM dbo.ClusterNodeCredential WHERE Kind = 'SqlLogin' AND Value = 'sa'; INSERT dbo.ServerCluster(ClusterId, Name, Enterprise, Site, NodeCount, RedundancyMode, Enabled, CreatedBy) VALUES (@ClusterId, 'S7 Smoke', 'zb', 'lab', 1, 'None', 1, 's7-smoke'); INSERT dbo.ClusterNode(NodeId, ClusterId, Host, OpcUaPort, DashboardPort, ApplicationUri, ServiceLevelBase, Enabled, CreatedBy) VALUES (@NodeId, @ClusterId, 'localhost', 4840, 15050, 'urn:OtOpcUa:s7-smoke-node', 200, 1, 's7-smoke'); INSERT dbo.ClusterNodeCredential(NodeId, Kind, Value, Enabled, CreatedBy) VALUES (@NodeId, 'SqlLogin', 'sa', 1, 's7-smoke'); -- DriverConfig keeps protocol/channel settings; endpoint moves to DeviceConfig. INSERT dbo.DriverInstance(DriverInstanceId, ClusterId, RawFolderId, Name, DriverType, DriverConfig, Enabled) VALUES (@DrvId, @ClusterId, NULL, 'snap7-smoke', 'S7', N'{ "Probe": { "Enabled": true, "IntervalMs": 5000, "TimeoutMs": 2000, "ProbeAddress": "MW0" } }', 1); -- DeviceConfig shape finalized against reworked options in Wave B (WP5). INSERT dbo.Device(DeviceId, DriverInstanceId, Name, Enabled, DeviceConfig) VALUES (@DevId, @DrvId, 'plc', 1, N'{ "Host": "127.0.0.1", "Port": 1102, "Rack": 0, "Slot": 0 }'); INSERT dbo.Tag(TagId, DeviceId, TagGroupId, Name, DataType, AccessLevel, WriteIdempotent, TagConfig) VALUES (@Tag, @DevId, NULL, 'DB1_DBW0', 'Int16', 'ReadWrite', 1, N'{ "address": "DB1.DBW0", "dataType": "Int16" }'); INSERT dbo.UnsArea(UnsAreaId, ClusterId, Name) VALUES (@AreaId, @ClusterId, 'lab-floor'); INSERT dbo.UnsLine(UnsLineId, UnsAreaId, Name) VALUES (@LineId, @AreaId, 's7-line'); INSERT dbo.Equipment(EquipmentId, EquipmentUuid, UnsLineId, Name, MachineCode, Enabled) VALUES (@EqId, @EqUuid, @LineId, 's7-sim', 's7-001', 1); INSERT dbo.UnsTagReference(UnsTagReferenceId, EquipmentId, TagId, SortOrder) VALUES (@RefId, @EqId, @Tag, 0); COMMIT; PRINT 'S7 smoke seed complete (v3 schema). Cluster: ' + @ClusterId + ' Node: ' + @NodeId;