Test case per createUiDefinition.json
Questo articolo descrive i test eseguiti con il toolkit di test del modello per i file createUiDefinition.json. Gli esempi includono i nomi di test e i codici esempio che superano o falliscono i test.
Il toolkit include test case per modelli di Azure Resource Manager (modelli di ARM) e file di modello principali denominati azuredeploy.json o maintemplate.json. Quando la directory contiene un file createUiDefinition.json, vengono eseguiti test specifici per i controlli dell'interfaccia utente. Per ulteriori informazioni su come eseguire i test o su come eseguire un test specifico, vedi Parametri di test.
Il file createUiDefinition.json crea controlli dell'interfaccia utente personalizzati usando elementi e funzioni.
Verifica che il parametro del modello consenta di utilizzare i valori
Nome test: i valori consentiti devono essere effettivamente consentiti
Questo test verifica che i valori per ogni controllo in createUiDefinition.json siano consentiti nei parametri del modello principale. I parametri vengono mappati in base al nome tra il modello principale e il file createUiDefinition.json.
Il parametro del modello principale deve accettare i valori del controllo allowedValues
. Il test verifica inoltre che il controllo venga fatto riferimento nella sezione createUiDefinition.jsonoutputs
.
Questo test controlla il modello principale e il file createUiDefinition.json. Un esempio del file createUiDefinition.json viene visualizzato dopo gli esempi di modello principali.
L'esempio seguente ha esito negativo perché il nome del parametro del modello principale combo
non corrisponde al nome del parametro del controllo comboBox
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"combo": {
"type": "string",
"defaultValue": "two"
}
},
"resources": [],
"outputs": {
"comboBoxOutput": {
"type": "string",
"value": "[parameters('combo')]"
}
}
}
L'esempio seguente ha esito negativo perché il tipo di parametro del modello principale int
non accetta il valore del controllo string
. E se il parametro di un modello principale definisce un defaultValue
, questo deve essere un value
valido nel allowedValues
del controllo.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"comboBox": {
"type": "int",
"defaultValue": 4
}
},
"resources": [],
"outputs": {
"comboBoxOutput": {
"type": "string",
"value": "[parameters('combo')]"
}
}
}
L'esempio seguente ha esito positivo perché il nome del parametro del modello principale corrisponde al nome del parametro del controllo. E il tipo di parametro del modello è un string
con un defaultValue
che è specificato nel allowedValues
del controllo.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"comboBox": {
"type": "string",
"defaultValue": "two"
}
},
"resources": [],
"outputs": {
"comboBoxOutput": {
"type": "string",
"value": "[parameters('comboBox')]"
}
}
}
File createUiDefinition.json per questo esempio:
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [],
"steps": [
{
"name": "demoComboBox",
"label": "demoComboBoxLabel",
"elements": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"defaultValue": "Value two",
"toolTip": "This is a tool tip",
"constraints": {
"allowedValues": [
{
"label": "Value one",
"description": "The value to select for option 1.",
"value": "one"
},
{
"label": "Value two",
"description": "The value to select for option 2.",
"value": "two"
}
],
"required": true
},
"visible": true
}
]
}
],
"outputs": {
"comboBox": "[steps('demoComboBox').comboBox]"
}
}
}
I controlli di output devono esistere
Nome test: i controlli negli output devono esistere
I controlli utilizzati nella sezione outputs
devono esistere in un elemento altrove in createUiDefinition.json. Il nome a cui si fa riferimento in outputs
deve corrispondere a un nome usato in basics[]
o steps[]
.
Il seguente esempio ha esito negativo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "nameDoesNotMatchOutput",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]"
}
}
}
Le proprietà devono includere valori
Nome test: CreateUIDefinition non deve avere spazi vuoti
Le proprietà devono includere valori. Le proprietà obbligatorie devono usare valori validi. Le proprietà facoltative vuote devono essere rimosse. Il test consente l'opzione vuota "basics": []
, "steps": []
o defaultValue
.
L'esempio seguente ha esito negativo perché label
, placeholder
e toolTip
sono vuote.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "",
"placeholder": "",
"defaultValue": "",
"toolTip": ""
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]"
}
}
}
L'esempio seguente ha esito positivo perché label
e toolTip
hanno valori ed placeholder
è stato rimosso.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"defaultValue": "",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]"
}
}
}
Usa uno schema e una versione validi
Nome test: CreateUIDefinition deve avere lo schema
Il file createUiDefinition.json deve includere una proprietà $schema
e utilizzare un $schema
e version
validi. I numeri di versione in $schema
e version
devono corrispondere.
Il seguente esempio ha esito negativo.
{
"$schema": "https://schema.management.azure.com/schemas/0.9.9-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.9.9-preview"
}
L'esempio seguente ha esito positivo perché usa i più recenti $schema
e version
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview"
}
Non nascondere la conferma delle credenziali
Nome test: La conferma delle credenziali non deve essere nascosta
Questo test verifica che le credenziali siano confermate per Microsoft.Common.PasswordBox o Microsoft.Compute.CredentialsCombo. La proprietà hideConfirmation
deve essere impostata su false
in modo che la conferma sia visibile.
L'esempio seguente ha esito negativo perché hideConfirmation
è true
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "credentials",
"type": "Microsoft.Compute.CredentialsCombo",
"label": {
"password": "Password",
"confirmPassword": "Confirm password"
},
"toolTip": {
"password": "Type your credentials"
},
"constraints": {
"required": true,
"customPasswordRegex": "^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{12,}$",
"customValidationMessage": "The password must be alphanumeric, contain at least 12 characters, and have at least 1 letter and 1 number."
},
"options": {
"hideConfirmation": true
},
"osPlatform": "Windows",
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"credentials": "[basics('credentials')]"
}
}
}
L'esempio seguente ha esito positivo perché hideConfirmation
è false
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "credentials",
"type": "Microsoft.Compute.CredentialsCombo",
"label": {
"password": "Password",
"confirmPassword": "Confirm password"
},
"toolTip": {
"password": "Type your credentials"
},
"constraints": {
"required": true,
"customPasswordRegex": "^(?=.*[A-Za-z])(?=.*\\d)[A-Za-z\\d]{12,}$",
"customValidationMessage": "The password must be alphanumeric, contain at least 12 characters, and have at least 1 letter and 1 number."
},
"options": {
"hideConfirmation": false
},
"osPlatform": "Windows",
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"credentials": "[basics('credentials')]"
}
}
}
Usa il gestore corretto
Nome test: il gestore deve essere corretto
Usa Microsoft.Azure.CreateUIDef
o Microsoft.Compute.MultiVm
nel file createUiDefinition.json.
Il seguente esempio ha esito negativo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.",
"version": "0.1.2-preview"
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview"
}
Non nascondere le risorse esistenti
Nome test: HideExisting deve essere gestito correttamente
Se hideExisting
è impostato su false
o omesso, outputs
deve contenere resourceGroup
e newOrExisting
. L'impostazione predefinita per hideExisting
è false
.
Esempi di tipi di controllo che includono hideExisting
sono Microsoft.Storage.StorageAccountSelector, Microsoft.Network.PublicIpAddressComboo Microsoft.Network.VirtualNetworkCombo.
Il seguente esempio ha esito negativo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "storage",
"type": "Microsoft.Storage.StorageAccountSelector",
"label": "Storage account",
"toolTip": "This is a demo storage account",
"defaultValue": {
"name": "storageaccount01",
"type": "Premium_LRS"
},
"options": {
"hideExisting": false
},
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "storage",
"type": "Microsoft.Storage.StorageAccountSelector",
"label": "Storage account",
"toolTip": "This is a demo storage account",
"defaultValue": {
"name": "storageaccount01",
"type": "Premium_LRS"
},
"options": {
"hideExisting": false
},
"visible": false
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"resourceGroup": "[basics('storage').resourceGroup]",
"newOrExisting": "[basics('storage').newOrExisting]"
}
}
}
Usa la posizione negli output
Nome test: la posizione deve trovarsi negli output
La sezione outputs
deve contenere una posizione che usi la funzione location.
Il seguente esempio ha esito negativo perché outputs
non include una posizione.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]",
"location": "[location()]"
}
}
}
Includi gli output dei controlli nei parametri del modello
Nome test: gli output devono essere presenti nei parametri del modello
Il test verifica che createUiDefinition.json includa una sezione outputs
. Il test verifica inoltre che quei outputs
siano definiti nella sezione del modello principale parameters
. I nomi devono corrispondere perché i parametri vengono mappati in base al nome tra il createUiDefinition.json e il modello principale.
Questo test controlla il modello principale e il file createUiDefinition.json. Un esempio del file createUiDefinition.json viene visualizzato dopo gli esempi di modello principali.
L'esempio seguente ha esito negativo perché il modello principale non include il parametro comboBox
della sezione del file createUiDefinition.json outputs
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]"
}
},
"resources": [],
"outputs": {
"location": {
"type": "string",
"value": "[parameters('location')]"
}
}
}
L'esempio seguente ha esito positivo perché il modello principale include il parametro comboBox
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"comboBox": {
"type": "string",
"defaultValue": "two"
},
"location": {
"type": "string",
"defaultValue": "[resourceGroup().location]"
}
},
"resources": [],
"outputs": {
"comboBox": {
"type": "string",
"value": "[parameters('comboBox')]"
},
"location": {
"type": "string",
"value": "[parameters('location')]"
}
}
}
File createUiDefinition.json per questo esempio:
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]",
"location": "[location()]"
}
}
}
I parametri senza impostazione predefinita devono esistere negli output
Nome test: i parametri senza impostazione predefinita devono esistere in CreateUIDefinition
I parametri nel modello principale privi di un valore predefinito devono esistere nella sezione del file createUiDefinition.json outputs
.
Questo test controlla il modello principale e il file createUiDefinition.json. Un esempio di file azuredeploy.json viene visualizzato dopo gli esempi del controllo.
L'esempio seguente ha esito negativo perché il file di createUiDefinition.json outputs
non include il parametro del modello principale comboBox
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"location": "[location()]"
}
}
}
L'esempio seguente ha esito positivo perché createUiDefinition.json include comboBox
in outputs
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"comboBox": "[basics('comboBox')]",
"location": "[location()]"
}
}
}
File azuredeploy.json per questo esempio. Il parametro comboBox
non ha un valore predefinito.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"comboBox": {
"type": "string"
},
"location": {
"type": "string"
}
},
"resources": [],
"outputs": {
"comboBox": {
"type": "string",
"value": "[parameters('comboBox')]"
},
"location": {
"type": "string",
"value": "[parameters('location')]"
}
}
}
Usa il parametro sicuro con la casella password
Nome test: le caselle di testo password devono essere usate per i parametri password
Questo test verifica che un elemento Microsoft.Common.PasswordBox sia definito nel modello parameters
principale e nel createUiDefinition.json outputs
. Il tipo di parametro del modello principale per una casella della password deve essere secureString
o secureObject
.
Questo test controlla il modello principale e il file createUiDefinition.json. Un esempio del file createUiDefinition.json viene visualizzato dopo gli esempi di modello principali.
L'esempio seguente ha esito negativo perché il parametro del modello principale passwordBox
è un string
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"passwordBox": {
"type": "string"
},
"location": {
"type": "string"
}
},
"resources": [],
"outputs": {
"location": {
"type": "string",
"value": "[parameters('location')]"
}
}
}
L'esempio seguente ha esito positivo perché il parametro del modello principale passwordBox
è un secureString
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"passwordBox": {
"type": "secureString"
},
"location": {
"type": "string"
}
},
"resources": [],
"outputs": {
"location": {
"type": "string",
"value": "[parameters('location')]"
}
}
}
File createUiDefinition.json per questo esempio:
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "passwordBox",
"type": "Microsoft.Common.PasswordBox",
"label": {
"password": "Password",
"confirmPassword": "Confirm password"
},
"toolTip": "Type a password"
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"passwordBox": "[basics('passwordBox')]"
}
}
}
La casella password richiede la lunghezza minima
Nome test: PasswordBoxes deve avere lunghezza minima
Il test verifica che l'elemento Microsoft.Common.PasswordBox usi constraints
con un regex
che richiede almeno 12 caratteri.
Il seguente esempio ha esito negativo perché non sono presenti constraints
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "passwordBox",
"type": "Microsoft.Common.PasswordBox",
"label": {
"password": "Password",
"confirmPassword": "Confirm password"
},
"toolTip": "Type a password"
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"passwordBox": "[basics('passwordBox')]"
}
}
}
L'esempio seguente ha esito positivo perché il regex
richiede almeno 12 caratteri.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "passwordBox",
"type": "Microsoft.Common.PasswordBox",
"label": {
"password": "Password",
"confirmPassword": "Confirm password"
},
"toolTip": "Type a password",
"constraints": {
"required": true,
"regex": "^[a-zA-Z0-9]{12,}$",
"validationMessage": "Password must be at least 12 characters long, contain only numbers and letters"
}
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"passwordBox": "[basics('passwordBox')]"
}
}
}
La casella di testo deve usare la convalida
Nome test: le caselle di testo sono ben composte
Usa la convalida con le caselle di testo per verificare che constraints
contenga un regex
e message
.
Il seguente esempio ha esito negativo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "textBox",
"type": "Microsoft.Common.TextBox",
"label": "Text box",
"toolTip": "Type 1-30 alphanumeric characters",
"placeholder": "Type your text here",
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"textBox": "[basics('textBox')]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "textBox",
"type": "Microsoft.Common.TextBox",
"label": "Text box",
"toolTip": "Type 1-30 alphanumeric characters",
"placeholder": "Type your text here",
"constraints": {
"required": true,
"validations": [
{
"regex": "^[a-z0-9A-Z]{1,30}$",
"message": "Only 1-30 characters alphanumeric characters are allowed."
}
]
},
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"textBox": "[basics('textBox')]"
}
}
}
toolTip deve esistere con un valore
Nome test: Tooltips devono essere presenti
Questo test verifica che la proprietà toolTip
esista e contenga un valore.
Il seguente esempio ha esito negativo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": ""
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"comboBox": "[basics('comboBox')]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "comboBox",
"type": "Microsoft.Common.DropDown",
"label": "Example drop down",
"toolTip": "This is a tool tip"
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"comboBox": "[basics('comboBox')]"
}
}
}
Non impostare un nome utente predefinito
Nome test: Gli username non devono avere un valore predefinito
Il test controlla se è presente un set defaultValue
per Microsoft.Compute.UserNameTextBox.
L'esempio seguente ha esito negativo perché viene fornito un defaultValue
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "userNameBox",
"type": "Microsoft.Compute.UserNameTextBox",
"label": "User name",
"defaultValue": "admin",
"toolTip": "Enter your user name",
"osPlatform": "Windows"
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"userNameBox": "[basics('userNameBox')]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "userNameBox",
"type": "Microsoft.Compute.UserNameTextBox",
"label": "User name",
"toolTip": "Enter your user name",
"osPlatform": "Windows"
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"userNameBox": "[basics('userNameBox')]"
}
}
}
Usa il messaggio con le convalide
Nome test: Le convalide devono avere un messaggio
Questo test verifica che qualsiasi validations
in createUiDefinition.json includa un message
.
L'esempio seguente ha esito negativo perché la convalida regex
non dispone di un message
.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "textBox",
"type": "Microsoft.Common.TextBox",
"label": "Text box",
"toolTip": "Type 1-30 alphanumeric characters",
"placeholder": "Type your text here",
"constraints": {
"required": true,
"validations": [
{
"regex": "^[a-z0-9A-Z]{1,30}$"
}
]
},
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"textBox": "[basics('textBox')]"
}
}
}
Il seguente esempio ha esito positivo.
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "textBox",
"type": "Microsoft.Common.TextBox",
"label": "Text box",
"toolTip": "Type 1-30 alphanumeric characters",
"placeholder": "Type your text here",
"constraints": {
"required": true,
"validations": [
{
"regex": "^[a-z0-9A-Z]{1,30}$",
"message": "Only 1-30 characters alphanumeric characters are allowed."
}
]
},
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"textBox": "[basics('textBox')]"
}
}
}
Le dimensioni delle macchine virtuali devono corrispondere
Nome test: Le dimensioni delle macchine virtuali devono corrispondere al modello
Questo test verifica che Microsoft.Compute.SizeSelector si trova nella createUiDefinition.json outputs
e nella sezione del parameters
modello principale. I parametri del modello principale che specificano un defaultValue
devono corrispondere a un valore nel allowedSizes
del controllo.
Questo test controlla il modello principale e il file createUiDefinition.json. Un esempio del file createUiDefinition.json viene visualizzato dopo gli esempi di modello principali.
L'esempio seguente ha esito negativo perché il defaultValue
del modello principale non corrisponde a un valore in allowedSizes
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string"
},
"vmSize": {
"type": "string",
"defaultValue": "Standard_D9"
}
},
"resources": [],
"outputs": {
"location": {
"type": "string",
"value": "[parameters('location')]"
},
"vmSize": {
"type": "string",
"value": "[parameters('vmSize')]"
}
}
}
L'esempio seguente ha esito positivo perché il defaultValue
del modello principale corrisponde a un valore in allowedSizes
.
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": {
"location": {
"type": "string"
},
"vmSize": {
"type": "string",
"defaultValue": "Standard_D3"
}
},
"resources": [],
"outputs": {
"location": {
"type": "string",
"value": "[parameters('location')]"
},
"vmSize": {
"type": "string",
"value": "[parameters('vmSize')]"
}
}
}
File createUiDefinition.json per questo esempio:
{
"$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#",
"handler": "Microsoft.Azure.CreateUIDef",
"version": "0.1.2-preview",
"parameters": {
"basics": [
{
"name": "vmSize",
"type": "Microsoft.Compute.SizeSelector",
"label": "VM Size",
"toolTip": "Select a virtual machine size",
"recommendedSizes": [
"Standard_D1"
],
"constraints": {
"allowedSizes": [
"Standard_D1",
"Standard_D2",
"Standard_D3"
]
},
"osPlatform": "Windows",
"visible": true
}
],
"steps": [],
"outputs": {
"location": "[location()]",
"vmSize": "[basics('vmSize')]"
}
}
}
Passaggi successivi
- Per creare un'interfaccia utente del portale di Azure, vedi CreateUiDefinition.json per l'esperienza di creazione di un'applicazione gestita di Azure.
- Per usare Create UI Definition Sandbox (ambiente sandbox di creazione della definizione dell'interfaccia utente), vedi Testare l'interfaccia del portale per le applicazioni gestite di Azure.
- Per ulteriori informazioni sui controlli dell'interfaccia utente, vedi Elementi CreateUiDefinition e funzioni CreateUiDefinition.
- Per saperne di più sui test dei modelli di ARM, vedi Test case per i modelli di ARM.