當前位置: 首頁>>代碼示例>>Golang>>正文


Golang Migration.SetRawSQLDB方法代碼示例

本文整理匯總了Golang中code/cloudfoundry/org/bbs/migration.Migration.SetRawSQLDB方法的典型用法代碼示例。如果您正苦於以下問題:Golang Migration.SetRawSQLDB方法的具體用法?Golang Migration.SetRawSQLDB怎麽用?Golang Migration.SetRawSQLDB使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在code/cloudfoundry/org/bbs/migration.Migration的用法示例。


在下文中一共展示了Migration.SetRawSQLDB方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Golang代碼示例。

示例1:

			initialMigrations = []migration.Migration{
				migrations.NewETCDToSQL(),
				migrations.NewIncreaseRunInfoColumnSize(),
			}

			for _, m := range initialMigrations {
				m.SetRawSQLDB(rawSQLDB)
				m.SetDBFlavor(flavor)
				m.SetClock(fakeClock)
				err := m.Up(logger)
				Expect(err).NotTo(HaveOccurred())
			}

			// Can't do this in the Describe BeforeEach
			// as the test on line 37 will cause ginkgo to panic
			mig.SetRawSQLDB(rawSQLDB)
			mig.SetDBFlavor(flavor)
		})

		JustBeforeEach(func() {
			migErr = mig.Up(logger)
		})

		It("does not error out", func() {
			Expect(migErr).NotTo(HaveOccurred())
		})

		It("should add a placement_tags column to desired lrps", func() {
			placementTags := []string{"tag-1"}

			jsonData, err := json.Marshal(placementTags)
開發者ID:cloudfoundry,項目名稱:bbs,代碼行數:31,代碼來源:1472757022_add_placement_tags_to_desired_lrp_test.go

示例2:

		It("appends itself to the migration list", func() {
			Expect(migrations.Migrations).To(ContainElement(migration))
		})

		Describe("Version", func() {
			It("returns the timestamp from which it was created", func() {
				Expect(migration.Version()).To(BeEquivalentTo(1471030898))
			})
		})

		Describe("Up", func() {
			BeforeEach(func() {
				// Can't do this in the Describe BeforeEach
				// as the test on line 37 will cause ginkgo to panic
				migration.SetRawSQLDB(rawSQLDB)
				migration.SetDBFlavor(flavor)
			})

			JustBeforeEach(func() {
				migrationErr = migration.Up(logger)
			})

			BeforeEach(func() {
				createStatements := []string{
					`CREATE TABLE actual_lrps(
	net_info TEXT NOT NULL
);`,
					`CREATE TABLE tasks(
	result TEXT,
	task_definition TEXT NOT NULL
開發者ID:cfibmers,項目名稱:bbs,代碼行數:30,代碼來源:1471030898_increase_run_info_column_test.go


注:本文中的code/cloudfoundry/org/bbs/migration.Migration.SetRawSQLDB方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。