2014-09-27 01:03:39 +02:00
package command
import (
2019-05-24 00:21:52 +02:00
"encoding/json"
2017-05-25 02:35:46 +02:00
"fmt"
2017-02-16 00:44:53 +01:00
"io/ioutil"
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
"log"
2014-09-27 01:30:49 +02:00
"os"
"path/filepath"
2017-01-19 05:50:45 +01:00
"strings"
2014-09-27 01:03:39 +02:00
"testing"
2020-03-31 23:02:40 +02:00
"github.com/davecgh/go-spew/spew"
"github.com/google/go-cmp/cmp"
2018-11-09 23:26:01 +01:00
"github.com/mitchellh/cli"
2018-03-28 00:31:05 +02:00
"github.com/zclconf/go-cty/cty"
2018-11-09 23:26:01 +01:00
"github.com/hashicorp/terraform/addrs"
2017-12-14 21:46:43 +01:00
"github.com/hashicorp/terraform/backend/local"
2018-11-09 23:26:01 +01:00
"github.com/hashicorp/terraform/configs"
2017-01-19 05:50:45 +01:00
"github.com/hashicorp/terraform/helper/copy"
2020-03-31 23:02:40 +02:00
"github.com/hashicorp/terraform/internal/getproviders"
"github.com/hashicorp/terraform/internal/providercache"
2017-12-18 16:37:15 +01:00
"github.com/hashicorp/terraform/state"
2018-11-09 23:26:01 +01:00
"github.com/hashicorp/terraform/states"
"github.com/hashicorp/terraform/states/statemgr"
2017-12-18 16:37:15 +01:00
"github.com/hashicorp/terraform/terraform"
2014-09-27 01:03:39 +02:00
)
2017-01-19 05:50:45 +01:00
func TestInit_empty ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
os . MkdirAll ( td , 0755 )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2014-09-27 01:03:39 +02:00
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2014-09-27 01:03:39 +02:00
} ,
}
2017-01-19 05:50:45 +01:00
args := [ ] string { }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
2014-09-27 01:03:39 +02:00
}
}
2017-01-19 05:50:45 +01:00
func TestInit_multipleArgs ( t * testing . T ) {
2020-03-10 21:32:22 +01:00
// Create a temporary working directory that is empty
td := tempDir ( t )
os . MkdirAll ( td , 0755 )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2014-09-27 01:03:39 +02:00
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2014-09-27 01:03:39 +02:00
} ,
}
2017-01-19 05:50:45 +01:00
args := [ ] string {
"bad" ,
"bad" ,
}
2014-09-27 01:03:39 +02:00
if code := c . Run ( args ) ; code != 1 {
t . Fatalf ( "bad: \n%s" , ui . OutputWriter . String ( ) )
}
}
2014-11-04 21:19:39 +01:00
2017-07-29 00:23:29 +02:00
func TestInit_fromModule_explicitDest ( t * testing . T ) {
2020-03-10 21:32:22 +01:00
td := tempDir ( t )
os . MkdirAll ( td , 0755 )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2017-07-29 00:23:29 +02:00
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
2018-11-10 00:18:00 +01:00
if _ , err := os . Stat ( DefaultStateFilename ) ; err == nil {
// This should never happen; it indicates a bug in another test
// is causing a terraform.tfstate to get left behind in our directory
// here, which can interfere with our init process in a way that
// isn't relevant to this test.
2019-01-29 23:16:41 +01:00
fullPath , _ := filepath . Abs ( DefaultStateFilename )
t . Fatalf ( "some other test has left terraform.tfstate behind:\n%s" , fullPath )
2018-11-10 00:18:00 +01:00
}
2017-07-29 00:23:29 +02:00
args := [ ] string {
"-from-module=" + testFixturePath ( "init" ) ,
2020-03-10 21:32:22 +01:00
td ,
2017-07-29 00:23:29 +02:00
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
2020-03-10 21:32:22 +01:00
if _ , err := os . Stat ( filepath . Join ( td , "hello.tf" ) ) ; err != nil {
2017-07-29 00:23:29 +02:00
t . Fatalf ( "err: %s" , err )
}
}
func TestInit_fromModule_cwdDest ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
os . MkdirAll ( td , os . ModePerm )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string {
"-from-module=" + testFixturePath ( "init" ) ,
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
if _ , err := os . Stat ( filepath . Join ( td , "hello.tf" ) ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
}
// https://github.com/hashicorp/terraform/issues/518
func TestInit_fromModule_dstInSrc ( t * testing . T ) {
dir := tempDir ( t )
if err := os . MkdirAll ( dir , 0755 ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
2020-03-10 21:32:22 +01:00
defer os . RemoveAll ( dir )
2017-07-29 00:23:29 +02:00
// Change to the temporary directory
cwd , err := os . Getwd ( )
if err != nil {
t . Fatalf ( "err: %s" , err )
}
if err := os . Chdir ( dir ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
defer os . Chdir ( cwd )
2018-10-15 01:35:59 +02:00
if err := os . Mkdir ( "foo" , os . ModePerm ) ; err != nil {
t . Fatal ( err )
}
2017-07-29 00:23:29 +02:00
if _ , err := os . Create ( "issue518.tf" ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string {
"-from-module=." ,
"foo" ,
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
if _ , err := os . Stat ( filepath . Join ( dir , "foo" , "issue518.tf" ) ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
}
2017-01-19 05:50:45 +01:00
func TestInit_get ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-get" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-01-19 05:50:45 +01:00
} ,
}
args := [ ] string { }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Check output
output := ui . OutputWriter . String ( )
2018-10-15 01:35:59 +02:00
if ! strings . Contains ( output , "foo in foo" ) {
t . Fatalf ( "doesn't look like we installed module 'foo': %s" , output )
2017-01-19 05:50:45 +01:00
}
}
2017-06-12 23:14:40 +02:00
func TestInit_getUpgradeModules ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
os . MkdirAll ( td , 0755 )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string {
"-get=true" ,
"-get-plugins=false" ,
"-upgrade" ,
testFixturePath ( "init-get" ) ,
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "command did not complete successfully:\n%s" , ui . ErrorWriter . String ( ) )
}
// Check output
output := ui . OutputWriter . String ( )
2018-10-15 01:35:59 +02:00
if ! strings . Contains ( output , "Upgrading modules..." ) {
2017-06-12 23:14:40 +02:00
t . Fatalf ( "doesn't look like get upgrade: %s" , output )
}
}
2017-01-19 05:50:45 +01:00
func TestInit_backend ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-01-19 05:50:45 +01:00
} ,
}
args := [ ] string { }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
if _ , err := os . Stat ( filepath . Join ( DefaultDataDir , DefaultStateFilename ) ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
}
2017-02-16 00:44:53 +01:00
func TestInit_backendUnset ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
{
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
log . Printf ( "[TRACE] TestInit_backendUnset: beginning first init" )
ui := cli . NewMockUi ( )
2017-02-16 00:44:53 +01:00
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-02-16 00:44:53 +01:00
} ,
}
// Init
args := [ ] string { }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
log . Printf ( "[TRACE] TestInit_backendUnset: first init complete" )
t . Logf ( "First run output:\n%s" , ui . OutputWriter . String ( ) )
t . Logf ( "First run errors:\n%s" , ui . ErrorWriter . String ( ) )
2017-02-16 00:44:53 +01:00
if _ , err := os . Stat ( filepath . Join ( DefaultDataDir , DefaultStateFilename ) ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
}
{
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
log . Printf ( "[TRACE] TestInit_backendUnset: beginning second init" )
2017-02-16 00:44:53 +01:00
// Unset
if err := ioutil . WriteFile ( "main.tf" , [ ] byte ( "" ) , 0644 ) ; err != nil {
t . Fatalf ( "err: %s" , err )
}
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
ui := cli . NewMockUi ( )
2017-02-16 00:44:53 +01:00
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-02-16 00:44:53 +01:00
} ,
}
2017-03-21 20:05:51 +01:00
args := [ ] string { "-force-copy" }
2017-02-16 00:44:53 +01:00
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
log . Printf ( "[TRACE] TestInit_backendUnset: second init complete" )
t . Logf ( "Second run output:\n%s" , ui . OutputWriter . String ( ) )
t . Logf ( "Second run errors:\n%s" , ui . ErrorWriter . String ( ) )
2017-02-16 00:44:53 +01:00
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
s := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2017-02-16 00:44:53 +01:00
if ! s . Backend . Empty ( ) {
t . Fatal ( "should not have backend config" )
}
}
}
2017-01-19 05:50:45 +01:00
func TestInit_backendConfigFile ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend-config-file" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-01-19 05:50:45 +01:00
} ,
}
args := [ ] string { "-backend-config" , "input.config" }
if code := c . Run ( args ) ; code != 0 {
2017-03-16 19:47:59 +01:00
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Read our saved backend config and verify we have our settings
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-10-15 01:35:59 +02:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"hello","workspace_dir":null} ` ; got != want {
2018-03-28 00:31:05 +02:00
t . Errorf ( "wrong config\ngot: %s\nwant: %s" , got , want )
2017-03-16 19:47:59 +01:00
}
}
func TestInit_backendConfigFileChange ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend-config-file-change" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
// Ask input
defer testInputMap ( t , map [ string ] string {
"backend-migrate-to-new" : "no" ,
} ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-03-16 19:47:59 +01:00
} ,
}
args := [ ] string { "-backend-config" , "input.config" }
if code := c . Run ( args ) ; code != 0 {
2017-03-17 18:22:48 +01:00
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Read our saved backend config and verify we have our settings
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-10-15 01:35:59 +02:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"hello","workspace_dir":null} ` ; got != want {
2018-03-28 00:31:05 +02:00
t . Errorf ( "wrong config\ngot: %s\nwant: %s" , got , want )
2017-03-17 18:22:48 +01:00
}
}
func TestInit_backendConfigKV ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend-config-kv" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-03-17 18:22:48 +01:00
} ,
}
args := [ ] string { "-backend-config" , "path=hello" }
if code := c . Run ( args ) ; code != 0 {
2017-01-19 05:50:45 +01:00
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Read our saved backend config and verify we have our settings
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-10-15 01:35:59 +02:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"hello","workspace_dir":null} ` ; got != want {
2018-03-28 00:31:05 +02:00
t . Errorf ( "wrong config\ngot: %s\nwant: %s" , got , want )
2017-01-19 05:50:45 +01:00
}
}
2019-05-24 00:21:52 +02:00
func TestInit_backendConfigKVReInit ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend-config-kv" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string { "-backend-config" , "path=test" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
ui = new ( cli . MockUi )
c = & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
// a second init should require no changes, nor should it change the backend.
args = [ ] string { "-input=false" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// make sure the backend is configured how we expect
configState := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
cfg := map [ string ] interface { } { }
if err := json . Unmarshal ( configState . Backend . ConfigRaw , & cfg ) ; err != nil {
t . Fatal ( err )
}
if cfg [ "path" ] != "test" {
t . Fatalf ( ` expected backend path="test", got path="%v" ` , cfg [ "path" ] )
}
2019-05-29 19:58:04 +02:00
// override the -backend-config options by settings
args = [ ] string { "-input=false" , "-backend-config" , "" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// make sure the backend is configured how we expect
configState = testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
cfg = map [ string ] interface { } { }
if err := json . Unmarshal ( configState . Backend . ConfigRaw , & cfg ) ; err != nil {
t . Fatal ( err )
}
if cfg [ "path" ] != nil {
t . Fatalf ( ` expected backend path="<nil>", got path="%v" ` , cfg [ "path" ] )
}
2019-05-24 00:21:52 +02:00
}
2019-05-24 20:51:18 +02:00
func TestInit_backendConfigKVReInitWithConfigDiff ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string { "-input=false" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
ui = new ( cli . MockUi )
c = & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
// a second init with identical config should require no changes, nor
// should it change the backend.
args = [ ] string { "-input=false" , "-backend-config" , "path=foo" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// make sure the backend is configured how we expect
configState := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
cfg := map [ string ] interface { } { }
if err := json . Unmarshal ( configState . Backend . ConfigRaw , & cfg ) ; err != nil {
t . Fatal ( err )
}
if cfg [ "path" ] != "foo" {
t . Fatalf ( ` expected backend path="foo", got path="%v" ` , cfg [ "foo" ] )
}
}
2019-07-23 14:08:28 +02:00
func TestInit_backendCli_no_config_block ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string { "-backend-config" , "path=test" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "got exit status %d; want 0\nstderr:\n%s\n\nstdout:\n%s" , code , ui . ErrorWriter . String ( ) , ui . OutputWriter . String ( ) )
}
errMsg := ui . ErrorWriter . String ( )
if ! strings . Contains ( errMsg , "Warning: Missing backend configuration" ) {
t . Fatal ( "expected missing backend block warning, got" , errMsg )
}
}
2017-06-02 22:13:11 +02:00
func TestInit_targetSubdir ( t * testing . T ) {
2017-01-19 05:50:45 +01:00
// Create a temporary working directory that is empty
td := tempDir ( t )
os . MkdirAll ( td , 0755 )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2017-06-02 22:13:11 +02:00
// copy the source into a subdir
copy . CopyDir ( testFixturePath ( "init-backend" ) , filepath . Join ( td , "source" ) )
2017-01-19 05:50:45 +01:00
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-01-19 05:50:45 +01:00
} ,
}
args := [ ] string {
2017-06-02 22:13:11 +02:00
"source" ,
2017-01-19 05:50:45 +01:00
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
2017-06-14 21:22:30 +02:00
if _ , err := os . Stat ( filepath . Join ( td , DefaultDataDir , DefaultStateFilename ) ) ; err != nil {
2017-06-02 22:13:11 +02:00
t . Fatalf ( "err: %s" , err )
}
// a data directory should not have been added to out working dir
2017-06-14 21:22:30 +02:00
if _ , err := os . Stat ( filepath . Join ( td , "source" , DefaultDataDir ) ) ; ! os . IsNotExist ( err ) {
2017-01-19 05:50:45 +01:00
t . Fatalf ( "err: %s" , err )
}
}
2017-03-29 18:50:20 +02:00
func TestInit_backendReinitWithExtra ( t * testing . T ) {
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend-empty" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
m := testMetaBackend ( t , nil )
opts := & BackendOpts {
2018-03-28 00:31:05 +02:00
ConfigOverride : configs . SynthBody ( "synth" , map [ string ] cty . Value {
"path" : cty . StringVal ( "hello" ) ,
} ) ,
Init : true ,
2017-03-29 18:50:20 +02:00
}
2018-03-28 00:31:05 +02:00
_ , cHash , err := m . backendConfig ( opts )
2017-03-29 18:50:20 +02:00
if err != nil {
t . Fatal ( err )
}
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-03-29 18:50:20 +02:00
} ,
}
args := [ ] string { "-backend-config" , "path=hello" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Read our saved backend config and verify we have our settings
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-10-15 01:35:59 +02:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"hello","workspace_dir":null} ` ; got != want {
2018-03-28 00:31:05 +02:00
t . Errorf ( "wrong config\ngot: %s\nwant: %s" , got , want )
2017-03-29 18:50:20 +02:00
}
2018-12-19 01:06:49 +01:00
if state . Backend . Hash != uint64 ( cHash ) {
2017-03-29 18:50:20 +02:00
t . Fatal ( "mismatched state and config backend hashes" )
}
// init again and make sure nothing changes
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state = testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-10-15 01:35:59 +02:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"hello","workspace_dir":null} ` ; got != want {
2018-03-28 00:31:05 +02:00
t . Errorf ( "wrong config\ngot: %s\nwant: %s" , got , want )
2017-03-29 18:50:20 +02:00
}
2018-12-19 01:06:49 +01:00
if state . Backend . Hash != uint64 ( cHash ) {
2017-03-29 18:50:20 +02:00
t . Fatal ( "mismatched state and config backend hashes" )
}
}
2017-03-29 21:51:24 +02:00
// move option from config to -backend-config args
func TestInit_backendReinitConfigToExtra ( t * testing . T ) {
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-03-29 21:51:24 +02:00
} ,
}
if code := c . Run ( [ ] string { "-input=false" } ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Read our saved backend config and verify we have our settings
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state := testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-10-15 01:35:59 +02:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"foo","workspace_dir":null} ` ; got != want {
2018-03-28 00:31:05 +02:00
t . Errorf ( "wrong config\ngot: %s\nwant: %s" , got , want )
2017-03-29 21:51:24 +02:00
}
backendHash := state . Backend . Hash
// init again but remove the path option from the config
cfg := "terraform {\n backend \"local\" {}\n}\n"
if err := ioutil . WriteFile ( "main.tf" , [ ] byte ( cfg ) , 0644 ) ; err != nil {
t . Fatal ( err )
}
2018-11-09 02:26:15 +01:00
// We need a fresh InitCommand here because the old one now has our configuration
// file cached inside it, so it won't re-read the modification we just made.
c = & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
2017-03-29 21:51:24 +02:00
args := [ ] string { "-input=false" , "-backend-config=path=foo" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
terraform: Ugly huge change to weave in new State and Plan types
Due to how often the state and plan types are referenced throughout
Terraform, there isn't a great way to switch them out gradually. As a
consequence, this huge commit gets us from the old world to a _compilable_
new world, but still has a large number of known test failures due to
key functionality being stubbed out.
The stubs here are for anything that interacts with providers, since we
now need to do the follow-up work to similarly replace the old
terraform.ResourceProvider interface with its replacement in the new
"providers" package. That work, along with work to fix the remaining
failing tests, will follow in subsequent commits.
The aim here was to replace all references to terraform.State and its
downstream types with states.State, terraform.Plan with plans.Plan,
state.State with statemgr.State, and switch to the new implementations of
the state and plan file formats. However, due to the number of times those
types are used, this also ended up affecting numerous other parts of core
such as terraform.Hook, the backend.Backend interface, and most of the CLI
commands.
Just as with 5861dbf3fc49b19587a31816eb06f511ab861bb4 before, I apologize
in advance to the person who inevitably just found this huge commit while
spelunking through the commit history.
2018-08-14 23:24:45 +02:00
state = testDataStateRead ( t , filepath . Join ( DefaultDataDir , DefaultStateFilename ) )
2018-11-09 02:26:15 +01:00
if got , want := normalizeJSON ( t , state . Backend . ConfigRaw ) , ` { "path":"foo","workspace_dir":null} ` ; got != want {
t . Errorf ( "wrong config after moving to arg\ngot: %s\nwant: %s" , got , want )
}
2017-03-29 21:51:24 +02:00
if state . Backend . Hash == backendHash {
t . Fatal ( "state.Backend.Hash was not updated" )
}
}
2017-03-29 22:45:25 +02:00
// make sure inputFalse stops execution on migrate
func TestInit_inputFalse ( t * testing . T ) {
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-backend" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
2017-04-14 03:05:58 +02:00
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2017-03-29 22:45:25 +02:00
} ,
}
args := [ ] string { "-input=false" , "-backend-config=path=foo" }
if code := c . Run ( [ ] string { "-input=false" } ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter )
}
2017-12-18 16:37:15 +01:00
// write different states for foo and bar
2018-11-09 23:26:01 +01:00
fooState := states . BuildState ( func ( s * states . SyncState ) {
s . SetOutputValue (
addrs . OutputValue { Name : "foo" } . Absolute ( addrs . RootModuleInstance ) ,
cty . StringVal ( "foo" ) ,
false , // not sensitive
)
} )
if err := statemgr . NewFilesystem ( "foo" ) . WriteState ( fooState ) ; err != nil {
2017-12-18 16:37:15 +01:00
t . Fatal ( err )
}
2018-11-09 23:26:01 +01:00
barState := states . BuildState ( func ( s * states . SyncState ) {
s . SetOutputValue (
addrs . OutputValue { Name : "bar" } . Absolute ( addrs . RootModuleInstance ) ,
cty . StringVal ( "bar" ) ,
false , // not sensitive
)
} )
if err := statemgr . NewFilesystem ( "bar" ) . WriteState ( barState ) ; err != nil {
2017-12-18 16:37:15 +01:00
t . Fatal ( err )
}
ui = new ( cli . MockUi )
c = & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
2017-03-29 22:45:25 +02:00
args = [ ] string { "-input=false" , "-backend-config=path=bar" }
if code := c . Run ( args ) ; code == 0 {
t . Fatal ( "init should have failed" , ui . OutputWriter )
}
2017-12-18 16:37:15 +01:00
errMsg := ui . ErrorWriter . String ( )
if ! strings . Contains ( errMsg , "input disabled" ) {
t . Fatal ( "expected input disabled error, got" , errMsg )
}
ui = new ( cli . MockUi )
c = & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
// A missing input=false should abort rather than loop infinitely
2019-05-24 17:31:04 +02:00
args = [ ] string { "-backend-config=path=baz" }
2017-12-18 16:37:15 +01:00
if code := c . Run ( args ) ; code == 0 {
t . Fatal ( "init should have failed" , ui . OutputWriter )
}
2017-03-29 22:45:25 +02:00
}
2017-05-04 20:03:57 +02:00
func TestInit_getProvider ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-get-providers" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2017-12-14 21:46:43 +01:00
overrides := metaOverridesForProvider ( testProvider ( ) )
2017-06-13 03:22:47 +02:00
ui := new ( cli . MockUi )
2020-03-31 23:02:40 +02:00
providerSource , close := newMockProviderSource ( t , map [ string ] [ ] string {
// looking for an exact version
"exact" : [ ] string { "1.2.3" } ,
// config requires >= 2.3.3
"greater-than" : [ ] string { "2.3.4" , "2.3.3" , "2.3.0" } ,
// config specifies
"between" : [ ] string { "3.4.5" , "2.3.4" , "1.2.3" } ,
} )
defer close ( )
2017-06-13 03:22:47 +02:00
m := Meta {
2017-12-14 21:46:43 +01:00
testingOverrides : overrides ,
2017-06-13 03:22:47 +02:00
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-05-04 20:03:57 +02:00
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-05-04 20:03:57 +02:00
}
2017-06-21 19:32:13 +02:00
args := [ ] string {
"-backend=false" , // should be possible to install plugins without backend init
}
2017-05-04 20:03:57 +02:00
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// check that we got the providers for our config
2020-03-31 23:02:40 +02:00
exactPath := fmt . Sprintf ( ".terraform/plugins/registry.terraform.io/hashicorp/exact/1.2.3/%s" , getproviders . CurrentPlatform )
2017-05-04 20:03:57 +02:00
if _ , err := os . Stat ( exactPath ) ; os . IsNotExist ( err ) {
t . Fatal ( "provider 'exact' not downloaded" )
}
2020-03-31 23:02:40 +02:00
greaterThanPath := fmt . Sprintf ( ".terraform/plugins/registry.terraform.io/hashicorp/greater-than/2.3.4/%s" , getproviders . CurrentPlatform )
2017-05-04 20:03:57 +02:00
if _ , err := os . Stat ( greaterThanPath ) ; os . IsNotExist ( err ) {
2020-03-20 18:59:59 +01:00
t . Fatal ( "provider 'greater-than' not downloaded" )
2017-05-04 20:03:57 +02:00
}
2020-03-31 23:02:40 +02:00
betweenPath := fmt . Sprintf ( ".terraform/plugins/registry.terraform.io/hashicorp/between/2.3.4/%s" , getproviders . CurrentPlatform )
2017-05-04 20:03:57 +02:00
if _ , err := os . Stat ( betweenPath ) ; os . IsNotExist ( err ) {
t . Fatal ( "provider 'between' not downloaded" )
}
2017-12-14 21:46:43 +01:00
t . Run ( "future-state" , func ( t * testing . T ) {
// getting providers should fail if a state from a newer version of
// terraform exists, since InitCommand.getProviders needs to inspect that
// state.
s := terraform . NewState ( )
s . TFVersion = "100.1.0"
local := & state . LocalState {
Path : local . DefaultStateFilename ,
}
if err := local . WriteState ( s ) ; err != nil {
t . Fatal ( err )
}
ui := new ( cli . MockUi )
m . Ui = ui
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-12-14 21:46:43 +01:00
}
if code := c . Run ( nil ) ; code == 0 {
t . Fatal ( "expected error, got:" , ui . OutputWriter )
}
errMsg := ui . ErrorWriter . String ( )
2018-11-10 00:06:00 +01:00
if ! strings . Contains ( errMsg , "which is newer than current" ) {
2017-12-14 21:46:43 +01:00
t . Fatal ( "unexpected error:" , errMsg )
}
} )
2017-05-04 20:03:57 +02:00
}
2017-06-15 16:12:00 +02:00
// make sure we can locate providers in various paths
func TestInit_findVendoredProviders ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
configDirName := "init-get-providers"
copy . CopyDir ( testFixturePath ( configDirName ) , filepath . Join ( td , configDirName ) )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
// An empty provider source
providerSource , close := newMockProviderSource ( t , nil )
defer close ( )
2017-06-15 16:12:00 +02:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-06-15 16:12:00 +02:00
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-06-15 16:12:00 +02:00
}
// make our plugin paths
if err := os . MkdirAll ( c . pluginDir ( ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
2017-06-16 20:09:47 +02:00
if err := os . MkdirAll ( DefaultPluginVendorDir , 0755 ) ; err != nil {
2017-06-15 16:12:00 +02:00
t . Fatal ( err )
}
// add some dummy providers
// the auto plugin directory
exactPath := filepath . Join ( c . pluginDir ( ) , "terraform-provider-exact_v1.2.3_x4" )
if err := ioutil . WriteFile ( exactPath , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
// the vendor path
2020-03-20 18:59:59 +01:00
greaterThanPath := filepath . Join ( DefaultPluginVendorDir , "terraform-provider-greater-than_v2.3.4_x4" )
2017-06-15 16:12:00 +02:00
if err := ioutil . WriteFile ( greaterThanPath , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
2017-06-15 21:23:16 +02:00
// Check the current directory too
2017-06-15 16:12:00 +02:00
betweenPath := filepath . Join ( "." , "terraform-provider-between_v2.3.4_x4" )
if err := ioutil . WriteFile ( betweenPath , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
args := [ ] string { configDirName }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
}
2020-01-10 17:54:53 +01:00
func TestInit_providerSource ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
configDirName := "init-required-providers"
copy . CopyDir ( testFixturePath ( configDirName ) , filepath . Join ( td , configDirName ) )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
// An empty provider source
providerSource , close := newMockProviderSource ( t , nil )
defer close ( )
2020-01-10 17:54:53 +01:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2020-01-10 17:54:53 +01:00
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2020-01-10 17:54:53 +01:00
}
// make our plugin paths
if err := os . MkdirAll ( c . pluginDir ( ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
if err := os . MkdirAll ( DefaultPluginVendorDir , 0755 ) ; err != nil {
t . Fatal ( err )
}
// add some dummy providers
// the auto plugin directory
testPath := filepath . Join ( c . pluginDir ( ) , "terraform-provider-test_v1.2.3_x4" )
if err := ioutil . WriteFile ( testPath , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
// the vendor path
sourcePath := filepath . Join ( DefaultPluginVendorDir , "terraform-provider-source_v1.2.3_x4" )
if err := ioutil . WriteFile ( sourcePath , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
args := [ ] string { configDirName }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
if strings . Contains ( ui . OutputWriter . String ( ) , "Terraform has initialized, but configuration upgrades may be needed" ) {
t . Fatalf ( "unexpected \"configuration upgrade\" warning in output" )
}
}
2017-06-13 03:32:42 +02:00
func TestInit_getUpgradePlugins ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-get-providers" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
providerSource , close := newMockProviderSource ( t , map [ string ] [ ] string {
// looking for an exact version
"exact" : [ ] string { "1.2.3" } ,
// config requires >= 2.3.3
"greater-than" : [ ] string { "2.3.4" , "2.3.3" , "2.3.0" } ,
// config specifies
"between" : [ ] string { "3.4.5" , "2.3.4" , "1.2.3" } ,
} )
defer close ( )
2017-06-13 03:32:42 +02:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-06-13 03:32:42 +02:00
}
err := os . MkdirAll ( m . pluginDir ( ) , os . ModePerm )
if err != nil {
t . Fatal ( err )
}
2020-03-31 23:02:40 +02:00
exactUnwanted := fmt . Sprintf ( ".terraform/plugins/registry.terraform.io/hashicorp/exact/0.0.1/%s" , getproviders . CurrentPlatform )
2017-06-13 03:32:42 +02:00
err = ioutil . WriteFile ( exactUnwanted , [ ] byte { } , os . ModePerm )
if err != nil {
t . Fatal ( err )
}
2020-03-31 23:02:40 +02:00
greaterThanUnwanted := fmt . Sprintf ( ".terraform/plugins/registry.terraform.io/hashicorp/greater-than/2.3.3/%s" , getproviders . CurrentPlatform )
2017-06-13 03:32:42 +02:00
err = ioutil . WriteFile ( greaterThanUnwanted , [ ] byte { } , os . ModePerm )
if err != nil {
t . Fatal ( err )
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-06-13 03:32:42 +02:00
}
args := [ ] string {
"-upgrade=true" ,
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "command did not complete successfully:\n%s" , ui . ErrorWriter . String ( ) )
}
2020-03-31 23:02:40 +02:00
cacheDir := m . providerLocalCacheDir ( )
gotPackages := cacheDir . AllAvailablePackages ( )
wantPackages := [ ] * providercache . CachedProvider { }
2017-06-13 03:32:42 +02:00
2020-03-31 23:02:40 +02:00
/ *
wantFilenames := [ ] string {
"lock.json" ,
2017-06-13 03:32:42 +02:00
2020-03-31 23:02:40 +02:00
// no "between" because the file in cwd overrides it
2017-06-13 03:32:42 +02:00
2020-03-31 23:02:40 +02:00
// The mock PurgeUnused doesn't actually purge anything, so the dir
// includes both our old and new versions.
"terraform-provider-exact_v0.0.1_x4" ,
"terraform-provider-exact_v1.2.3_x4" ,
"terraform-provider-greater-than_v2.3.3_x4" ,
"terraform-provider-greater-than_v2.3.4_x4" ,
}
* /
2017-06-13 03:32:42 +02:00
2020-03-31 23:02:40 +02:00
if diff := cmp . Diff ( wantPackages , gotPackages ) ; diff != "" {
t . Errorf ( "wrong cache directory contents after upgrade\n%s" , diff )
2017-06-13 03:32:42 +02:00
}
}
2017-05-04 20:03:57 +02:00
func TestInit_getProviderMissing ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-get-providers" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
providerSource , close := newMockProviderSource ( t , map [ string ] [ ] string {
// looking for exact version 1.2.3
"exact" : [ ] string { "1.2.4" } ,
// config requires >= 2.3.3
"greater-than" : [ ] string { "2.3.4" , "2.3.3" , "2.3.0" } ,
// config specifies
"between" : [ ] string { "3.4.5" , "2.3.4" , "1.2.3" } ,
} )
defer close ( )
2017-06-13 03:22:47 +02:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-05-04 20:03:57 +02:00
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-05-04 20:03:57 +02:00
}
args := [ ] string { }
if code := c . Run ( args ) ; code == 0 {
t . Fatalf ( "expceted error, got output: \n%s" , ui . OutputWriter . String ( ) )
}
if ! strings . Contains ( ui . ErrorWriter . String ( ) , "no suitable version for provider" ) {
t . Fatalf ( "unexpected error output: %s" , ui . ErrorWriter )
}
}
2018-11-10 00:08:39 +01:00
func TestInit_checkRequiredVersion ( t * testing . T ) {
2017-08-28 20:25:16 +02:00
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-check-required-version" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2018-10-15 01:35:59 +02:00
ui := cli . NewMockUi ( )
2017-08-28 20:25:16 +02:00
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string { }
if code := c . Run ( args ) ; code != 1 {
2018-10-15 01:35:59 +02:00
t . Fatalf ( "got exit status %d; want 1\nstderr:\n%s\n\nstdout:\n%s" , code , ui . ErrorWriter . String ( ) , ui . OutputWriter . String ( ) )
2017-08-28 20:25:16 +02:00
}
}
2017-05-25 02:35:46 +02:00
func TestInit_providerLockFile ( t * testing . T ) {
// Create a temporary working directory that is empty
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-provider-lock-file" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
providerSource , close := newMockProviderSource ( t , map [ string ] [ ] string {
"test" : [ ] string { "1.2.3" } ,
} )
defer close ( )
2017-06-13 03:22:47 +02:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-05-25 02:35:46 +02:00
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-05-25 02:35:46 +02:00
}
args := [ ] string { }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
2020-03-31 23:02:40 +02:00
selectionsFile := ".terraform/plugins/selections.json"
buf , err := ioutil . ReadFile ( selectionsFile )
2017-05-25 02:35:46 +02:00
if err != nil {
2020-03-31 23:02:40 +02:00
t . Fatalf ( "failed to read provider selections file %s: %s" , selectionsFile , err )
2017-05-25 02:35:46 +02:00
}
2020-03-31 23:02:40 +02:00
// The hash in here is for the fake package that newMockProviderSource produces
// (so it'll change if newMockProviderSource starts producing different contents)
2017-05-25 02:35:46 +02:00
wantLockFile := strings . TrimSpace ( `
{
2020-03-31 23:02:40 +02:00
"registry.terraform.io/hashicorp/test" : {
"hash" : "h1:4RzJudhcE4CkEwtVNRqdMKumSXu6bj8fkFTbPaX5G14=" ,
"version" : "1.2.3"
}
2017-05-25 02:35:46 +02:00
}
` )
if string ( buf ) != wantLockFile {
2020-03-31 23:02:40 +02:00
t . Errorf ( "wrong provider selections file contents\ngot: %s\nwant: %s" , buf , wantLockFile )
2017-05-25 02:35:46 +02:00
}
}
2017-06-15 21:23:16 +02:00
2017-12-21 17:21:07 +01:00
func TestInit_pluginDirReset ( t * testing . T ) {
2018-03-28 19:08:38 +02:00
td := testTempDir ( t )
2020-01-13 21:10:00 +01:00
defer os . RemoveAll ( td )
2017-12-21 17:21:07 +01:00
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
// An empty provider source
providerSource , close := newMockProviderSource ( t , nil )
defer close ( )
2017-12-21 17:21:07 +01:00
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-12-21 17:21:07 +01:00
} ,
}
// make our vendor paths
pluginPath := [ ] string { "a" , "b" , "c" }
for _ , p := range pluginPath {
if err := os . MkdirAll ( p , 0755 ) ; err != nil {
t . Fatal ( err )
}
}
// run once and save the -plugin-dir
args := [ ] string { "-plugin-dir" , "a" }
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter )
}
pluginDirs , err := c . loadPluginPath ( )
if err != nil {
t . Fatal ( err )
}
if len ( pluginDirs ) != 1 || pluginDirs [ 0 ] != "a" {
t . Fatalf ( ` expected plugin dir ["a"], got %q ` , pluginDirs )
}
ui = new ( cli . MockUi )
c = & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource , // still empty
2017-12-21 17:21:07 +01:00
} ,
}
// make sure we remove the plugin-dir record
2018-01-04 22:49:45 +01:00
args = [ ] string { "-plugin-dir=" }
if code := c . Run ( args ) ; code != 0 {
2017-12-21 17:21:07 +01:00
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter )
}
pluginDirs , err = c . loadPluginPath ( )
if err != nil {
t . Fatal ( err )
}
if len ( pluginDirs ) != 0 {
t . Fatalf ( "expected no plugin dirs got %q" , pluginDirs )
}
}
2017-06-15 21:23:16 +02:00
// Test user-supplied -plugin-dir
func TestInit_pluginDirProviders ( t * testing . T ) {
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-get-providers" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
// An empty provider source
providerSource , close := newMockProviderSource ( t , nil )
defer close ( )
2017-06-15 21:23:16 +02:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-06-15 21:23:16 +02:00
}
c := & InitCommand {
2020-03-31 23:02:40 +02:00
Meta : m ,
2017-06-15 21:23:16 +02:00
}
// make our vendor paths
pluginPath := [ ] string { "a" , "b" , "c" }
for _ , p := range pluginPath {
if err := os . MkdirAll ( p , 0755 ) ; err != nil {
t . Fatal ( err )
}
}
// add some dummy providers in our plugin dirs
for i , name := range [ ] string {
"terraform-provider-exact_v1.2.3_x4" ,
2020-03-20 18:59:59 +01:00
"terraform-provider-greater-than_v2.3.4_x4" ,
2017-06-15 21:23:16 +02:00
"terraform-provider-between_v2.3.4_x4" ,
} {
if err := ioutil . WriteFile ( filepath . Join ( pluginPath [ i ] , name ) , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
}
args := [ ] string {
"-plugin-dir" , "a" ,
"-plugin-dir" , "b" ,
"-plugin-dir" , "c" ,
}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter )
}
}
// Test user-supplied -plugin-dir doesn't allow auto-install
func TestInit_pluginDirProvidersDoesNotGet ( t * testing . T ) {
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-get-providers" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
// An empty provider source
providerSource , close := newMockProviderSource ( t , nil )
defer close ( )
2017-06-15 21:23:16 +02:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2017-06-15 21:23:16 +02:00
}
c := & InitCommand {
Meta : m ,
}
// make our vendor paths
pluginPath := [ ] string { "a" , "b" }
for _ , p := range pluginPath {
if err := os . MkdirAll ( p , 0755 ) ; err != nil {
t . Fatal ( err )
}
}
// add some dummy providers in our plugin dirs
for i , name := range [ ] string {
"terraform-provider-exact_v1.2.3_x4" ,
2020-03-20 18:59:59 +01:00
"terraform-provider-greater-than_v2.3.4_x4" ,
2017-06-15 21:23:16 +02:00
} {
if err := ioutil . WriteFile ( filepath . Join ( pluginPath [ i ] , name ) , [ ] byte ( "test bin" ) , 0755 ) ; err != nil {
t . Fatal ( err )
}
}
args := [ ] string {
"-plugin-dir" , "a" ,
"-plugin-dir" , "b" ,
}
if code := c . Run ( args ) ; code == 0 {
// should have been an error
t . Fatalf ( "bad: \n%s" , ui . OutputWriter )
}
2020-03-31 23:02:40 +02:00
if calls := providerSource . CallLog ( ) ; len ( calls ) > 0 {
t . Errorf ( "unexpected provider source calls (want none)\n%s" , spew . Sdump ( calls ) )
}
2017-06-15 21:23:16 +02:00
}
2018-01-05 17:51:09 +01:00
// Verify that plugin-dir doesn't prevent discovery of internal providers
func TestInit_pluginWithInternal ( t * testing . T ) {
td := tempDir ( t )
copy . CopyDir ( testFixturePath ( "init-internal" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
2020-03-31 23:02:40 +02:00
// An empty provider source
providerSource , close := newMockProviderSource ( t , nil )
defer close ( )
2018-01-05 17:51:09 +01:00
ui := new ( cli . MockUi )
m := Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
2020-03-31 23:02:40 +02:00
ProviderSource : providerSource ,
2018-01-05 17:51:09 +01:00
}
c := & InitCommand {
Meta : m ,
}
args := [ ] string { "-plugin-dir" , "./" }
//args := []string{}
if code := c . Run ( args ) ; code != 0 {
t . Fatalf ( "error: %s" , ui . ErrorWriter )
}
}
command: "terraform init" can partially initialize for 0.12upgrade
There are a few constructs from 0.11 and prior that cause 0.12 parsing to
fail altogether, which previously created a chicken/egg problem because
we need to install the providers in order to run "terraform 0.12upgrade"
and thus fix the problem.
This changes "terraform init" to use the new "early configuration" loader
for module and provider installation. This is built on the more permissive
parser in the terraform-config-inspect package, and so it allows us to
read out the top-level blocks from the configuration while accepting
legacy HCL syntax.
In the long run this will let us do version compatibility detection before
attempting a "real" config load, giving us better error messages for any
future syntax additions, but in the short term the key thing is that it
allows us to install the dependencies even if the configuration isn't
fully valid.
Because backend init still requires full configuration, this introduces a
new mode of terraform init where it detects heuristically if it seems like
we need to do a configuration upgrade and does a partial init if so,
before finally directing the user to run "terraform 0.12upgrade" before
running any other commands.
The heuristic here is based on two assumptions:
- If the "early" loader finds no errors but the normal loader does, the
configuration is likely to be valid for Terraform 0.11 but not 0.12.
- If there's already a version constraint in the configuration that
excludes Terraform versions prior to v0.12 then the configuration is
probably _already_ upgraded and so it's just a normal syntax error,
even if the early loader didn't detect it.
Once the upgrade process is removed in 0.13.0 (users will be required to
go stepwise 0.11 -> 0.12 -> 0.13 to upgrade after that), some of this can
be simplified to remove that special mode, but the idea of doing the
dependency version checks against the liberal parser will remain valuable
to increase our chances of reporting version-based incompatibilities
rather than syntax errors as we add new features in future.
2019-01-14 20:11:00 +01:00
2020-03-19 13:01:16 +01:00
// The module in this test uses terraform 0.11-style syntax. We expect that the
// earlyconfig will succeed but the main loader fail, and return an error that
// indicates that syntax upgrades may be required.
func TestInit_syntaxErrorUpgradeHint ( t * testing . T ) {
2019-05-15 00:01:31 +02:00
// Create a temporary working directory that is empty
td := tempDir ( t )
2020-03-19 13:01:16 +01:00
// This module
2019-05-15 00:01:31 +02:00
copy . CopyDir ( testFixturePath ( "init-sniff-version-error" ) , td )
defer os . RemoveAll ( td )
defer testChdir ( t , td ) ( )
ui := new ( cli . MockUi )
c := & InitCommand {
Meta : Meta {
testingOverrides : metaOverridesForProvider ( testProvider ( ) ) ,
Ui : ui ,
} ,
}
args := [ ] string { }
2020-03-19 13:01:16 +01:00
if code := c . Run ( args ) ; code != 1 {
2019-05-15 00:01:31 +02:00
t . Fatalf ( "bad: \n%s" , ui . ErrorWriter . String ( ) )
}
// Check output.
2020-03-19 13:01:16 +01:00
output := ui . ErrorWriter . String ( )
if got , want := output , "If you've recently upgraded to Terraform v0.13 from Terraform\nv0.11, this may be because your configuration uses syntax constructs that are no\nlonger valid" ; ! strings . Contains ( got , want ) {
2019-05-15 00:01:31 +02:00
t . Fatalf ( "wrong output\ngot:\n%s\n\nwant: message containing %q" , got , want )
}
}
2020-03-31 23:02:40 +02:00
// newMockProviderSource is a helper to succinctly construct a mock provider
// source that contains a set of packages matching the given provider versions
// that are available for installation (from temporary local files).
//
// The caller must call the returned close callback once the source is no
// longer needed, at which point it will clean up all of the temporary files
// and the packages in the source will no longer be available for installation.
//
// For ease of use in the common case, this function just treats all of the
// provider given names as "default" providers under
// registry.terraform.io/hashicorp . If you need more control over the
// provider addresses, construct a getproviders.MockSource directly instead.
//
// This function also registers providers as belonging to the current platform,
// to ensure that they will be available to a provider installer operating in
// its default configuration.
//
// In case of any errors while constructing the source, this function will
// abort the current test using the given testing.T. Therefore a caller can
// assume that if this function returns then the result is valid and ready
// to use.
func newMockProviderSource ( t * testing . T , availableProviderVersions map [ string ] [ ] string ) ( source * getproviders . MockSource , close func ( ) ) {
t . Helper ( )
var packages [ ] getproviders . PackageMeta
var closes [ ] func ( )
close = func ( ) {
for _ , f := range closes {
f ( )
}
}
for name , versions := range availableProviderVersions {
addr := addrs . NewDefaultProvider ( name )
for _ , versionStr := range versions {
version , err := getproviders . ParseVersion ( versionStr )
if err != nil {
close ( )
t . Fatalf ( "failed to parse %q as a version number for %q: %s" , versionStr , name , err )
}
meta , close , err := getproviders . FakeInstallablePackageMeta ( addr , version , getproviders . CurrentPlatform )
if err != nil {
close ( )
t . Fatalf ( "failed to prepare fake package for %s %s: %s" , name , versionStr , err )
}
closes = append ( closes , close )
packages = append ( packages , meta )
}
}
return getproviders . NewMockSource ( packages ) , close
}