Spaces:
Running
Running
File size: 16,575 Bytes
b110593 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
// _ _
// __ _____ __ ___ ___ __ _| |_ ___
// \ \ /\ / / _ \/ _` \ \ / / |/ _` | __/ _ \
// \ V V / __/ (_| |\ V /| | (_| | || __/
// \_/\_/ \___|\__,_| \_/ |_|\__,_|\__\___|
//
// Copyright © 2016 - 2024 Weaviate B.V. All rights reserved.
//
// CONTACT: [email protected]
//
package test
import (
"fmt"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
clschema "github.com/weaviate/weaviate/client/schema"
"github.com/weaviate/weaviate/entities/models"
"github.com/weaviate/weaviate/entities/schema"
"github.com/weaviate/weaviate/test/helper"
)
// this test prevents a regression on
// https://github.com/weaviate/weaviate/issues/981
func TestInvalidDataTypeInProperty(t *testing.T) {
t.Parallel()
className := "WrongPropertyClass"
t.Run("asserting that this class does not exist yet", func(t *testing.T) {
assert.NotContains(t, GetObjectClassNames(t), className)
})
t.Run("trying to import empty string as data type", func(t *testing.T) {
c := &models.Class{
Class: className,
Properties: []*models.Property{
{
Name: "someProperty",
DataType: []string{""},
},
},
}
params := clschema.NewSchemaObjectsCreateParams().WithObjectClass(c)
resp, err := helper.Client(t).Schema.SchemaObjectsCreate(params, nil)
helper.AssertRequestFail(t, resp, err, func() {
parsed, ok := err.(*clschema.SchemaObjectsCreateUnprocessableEntity)
require.True(t, ok, "error should be unprocessable entity")
assert.Equal(t, "property 'someProperty': invalid dataType: dataType cannot be an empty string",
parsed.Payload.Error[0].Message)
})
})
}
func TestInvalidPropertyName(t *testing.T) {
t.Parallel()
className := "WrongPropertyClass"
t.Run("asserting that this class does not exist yet", func(t *testing.T) {
assert.NotContains(t, GetObjectClassNames(t), className)
})
t.Run("trying to create class with invalid property name", func(t *testing.T) {
c := &models.Class{
Class: className,
Properties: []*models.Property{
{
Name: "some-property",
DataType: schema.DataTypeText.PropString(),
Tokenization: models.PropertyTokenizationWhitespace,
},
},
}
params := clschema.NewSchemaObjectsCreateParams().WithObjectClass(c)
resp, err := helper.Client(t).Schema.SchemaObjectsCreate(params, nil)
helper.AssertRequestFail(t, resp, err, func() {
parsed, ok := err.(*clschema.SchemaObjectsCreateUnprocessableEntity)
require.True(t, ok, "error should be unprocessable entity")
assert.Equal(t, "'some-property' is not a valid property name. Property names in Weaviate "+
"are restricted to valid GraphQL names, which must be “/[_A-Za-z][_0-9A-Za-z]*/”.",
parsed.Payload.Error[0].Message)
})
})
}
func TestAddAndRemoveObjectClass(t *testing.T) {
randomObjectClassName := "YellowCars"
// Ensure that this name is not in the schema yet.
t.Log("Asserting that this class does not exist yet")
assert.NotContains(t, GetObjectClassNames(t), randomObjectClassName)
tc := &models.Class{
Class: randomObjectClassName,
ModuleConfig: map[string]interface{}{
"text2vec-contextionary": map[string]interface{}{
"vectorizeClassName": true,
},
},
}
t.Log("Creating class")
params := clschema.NewSchemaObjectsCreateParams().WithObjectClass(tc)
resp, err := helper.Client(t).Schema.SchemaObjectsCreate(params, nil)
helper.AssertRequestOk(t, resp, err, nil)
t.Log("Asserting that this class is now created")
assert.Contains(t, GetObjectClassNames(t), randomObjectClassName)
t.Run("pure http - without the auto-generated client", testGetSchemaWithoutClient)
// Now clean up this class.
t.Log("Remove the class")
delParams := clschema.NewSchemaObjectsDeleteParams().WithClassName(randomObjectClassName)
delResp, err := helper.Client(t).Schema.SchemaObjectsDelete(delParams, nil)
helper.AssertRequestOk(t, delResp, err, nil)
// And verify that the class does not exist anymore.
assert.NotContains(t, GetObjectClassNames(t), randomObjectClassName)
t.Log("Verify schema cluster status")
statusResp, err := helper.Client(t).Schema.SchemaClusterStatus(
clschema.NewSchemaClusterStatusParams(), nil,
)
require.Nil(t, err)
assert.Equal(t, "", statusResp.Payload.Error)
assert.True(t, statusResp.Payload.Healthy)
}
// This test prevents a regression on
// https://github.com/weaviate/weaviate/issues/1799
//
// This was related to adding ref props. For example in the case of a circular
// dependency (A<>B), users would typically add A without refs, then add B with
// a reference back to A, finally update A with a ref to B.
//
// This last update that would set the ref prop on an existing class was missing
// module-specific defaults. So when comparing to-be-updated to existing we would
// find differences in the properties, thus triggering the above error.
func TestUpdateHNSWSettingsAfterAddingRefProps(t *testing.T) {
className := "RefUpdateIssueClass"
t.Run("asserting that this class does not exist yet", func(t *testing.T) {
assert.NotContains(t, GetObjectClassNames(t), className)
})
defer func(t *testing.T) {
params := clschema.NewSchemaObjectsDeleteParams().WithClassName(className)
_, err := helper.Client(t).Schema.SchemaObjectsDelete(params, nil)
assert.Nil(t, err)
if err != nil {
if typed, ok := err.(*clschema.SchemaObjectsDeleteBadRequest); ok {
fmt.Println(typed.Payload.Error[0].Message)
}
}
}(t)
t.Run("initially creating the class", func(t *testing.T) {
c := &models.Class{
Class: className,
Properties: []*models.Property{
{
Name: "string_prop",
DataType: schema.DataTypeText.PropString(),
Tokenization: models.PropertyTokenizationWhitespace,
},
},
}
params := clschema.NewSchemaObjectsCreateParams().WithObjectClass(c)
_, err := helper.Client(t).Schema.SchemaObjectsCreate(params, nil)
assert.Nil(t, err)
})
t.Run("adding a ref prop after the fact", func(t *testing.T) {
params := clschema.NewSchemaObjectsPropertiesAddParams().
WithClassName(className).
WithBody(&models.Property{
DataType: []string{className},
Name: "ref_prop",
})
_, err := helper.Client(t).Schema.SchemaObjectsPropertiesAdd(params, nil)
assert.Nil(t, err)
})
t.Run("obtaining the class, making an innocent change and trying to update it", func(t *testing.T) {
params := clschema.NewSchemaObjectsGetParams().
WithClassName(className)
res, err := helper.Client(t).Schema.SchemaObjectsGet(params, nil)
require.Nil(t, err)
class := res.Payload
class.VectorIndexConfig.(map[string]interface{})["ef"] = float64(1234)
updateParams := clschema.NewSchemaObjectsUpdateParams().
WithClassName(className).
WithObjectClass(class)
_, err = helper.Client(t).Schema.SchemaObjectsUpdate(updateParams, nil)
assert.Nil(t, err)
})
t.Run("obtaining the class, making a change to IndexNullState (immutable) property and update", func(t *testing.T) {
params := clschema.NewSchemaObjectsGetParams().
WithClassName(className)
res, err := helper.Client(t).Schema.SchemaObjectsGet(params, nil)
require.Nil(t, err)
class := res.Payload
// IndexNullState cannot be updated during runtime
class.InvertedIndexConfig.IndexNullState = true
updateParams := clschema.NewSchemaObjectsUpdateParams().
WithClassName(className).
WithObjectClass(class)
_, err = helper.Client(t).Schema.SchemaObjectsUpdate(updateParams, nil)
assert.NotNil(t, err)
})
t.Run("obtaining the class, making a change to IndexPropertyLength (immutable) property and update", func(t *testing.T) {
params := clschema.NewSchemaObjectsGetParams().
WithClassName(className)
res, err := helper.Client(t).Schema.SchemaObjectsGet(params, nil)
require.Nil(t, err)
class := res.Payload
// IndexPropertyLength cannot be updated during runtime
class.InvertedIndexConfig.IndexPropertyLength = true
updateParams := clschema.NewSchemaObjectsUpdateParams().
WithClassName(className).
WithObjectClass(class)
_, err = helper.Client(t).Schema.SchemaObjectsUpdate(updateParams, nil)
assert.NotNil(t, err)
})
}
// This test prevents a regression of
// https://github.com/weaviate/weaviate/issues/2692
//
// In this issue, any time a class had no vector index set, any other update to
// the class would be blocked
func TestUpdateClassWithoutVectorIndex(t *testing.T) {
className := "IAintGotNoVectorIndex"
t.Run("asserting that this class does not exist yet", func(t *testing.T) {
assert.NotContains(t, GetObjectClassNames(t), className)
})
defer func(t *testing.T) {
params := clschema.NewSchemaObjectsDeleteParams().WithClassName(className)
_, err := helper.Client(t).Schema.SchemaObjectsDelete(params, nil)
assert.Nil(t, err)
if err != nil {
if typed, ok := err.(*clschema.SchemaObjectsDeleteBadRequest); ok {
fmt.Println(typed.Payload.Error[0].Message)
}
}
}(t)
t.Run("initially creating the class", func(t *testing.T) {
c := &models.Class{
Class: className,
InvertedIndexConfig: &models.InvertedIndexConfig{
Stopwords: &models.StopwordConfig{
Preset: "en",
},
},
Properties: []*models.Property{
{
Name: "text_prop",
DataType: []string{"text"},
},
},
VectorIndexConfig: map[string]interface{}{
"skip": true,
},
}
params := clschema.NewSchemaObjectsCreateParams().WithObjectClass(c)
_, err := helper.Client(t).Schema.SchemaObjectsCreate(params, nil)
assert.Nil(t, err)
})
t.Run("obtaining the class, making an innocent change and trying to update it", func(t *testing.T) {
params := clschema.NewSchemaObjectsGetParams().
WithClassName(className)
res, err := helper.Client(t).Schema.SchemaObjectsGet(params, nil)
require.Nil(t, err)
class := res.Payload
class.InvertedIndexConfig.Stopwords.Preset = "none"
updateParams := clschema.NewSchemaObjectsUpdateParams().
WithClassName(className).
WithObjectClass(class)
_, err = helper.Client(t).Schema.SchemaObjectsUpdate(updateParams, nil)
assert.Nil(t, err)
})
}
// This test prevents a regression of
// https://github.com/weaviate/weaviate/issues//3177
//
// This test ensures that distance belongs to the immutable properties, i.e. no changes to it are possible after creating the class.
func TestUpdateDistanceSettings(t *testing.T) {
className := "Cosine_Class"
t.Run("asserting that this class does not exist yet", func(t *testing.T) {
assert.NotContains(t, GetObjectClassNames(t), className)
})
defer func(t *testing.T) {
params := clschema.NewSchemaObjectsDeleteParams().WithClassName(className)
_, err := helper.Client(t).Schema.SchemaObjectsDelete(params, nil)
assert.Nil(t, err)
if err != nil {
if typed, ok := err.(*clschema.SchemaObjectsDeleteBadRequest); ok {
fmt.Println(typed.Payload.Error[0].Message)
}
}
}(t)
t.Run("initially creating the class", func(t *testing.T) {
c := &models.Class{
Class: className,
Vectorizer: "none",
Properties: []*models.Property{
{
Name: "name",
DataType: schema.DataTypeText.PropString(),
Tokenization: models.PropertyTokenizationWhitespace,
},
},
VectorIndexConfig: map[string]interface{}{
"distance": "cosine",
},
}
params := clschema.NewSchemaObjectsCreateParams().WithObjectClass(c)
_, err := helper.Client(t).Schema.SchemaObjectsCreate(params, nil)
assert.Nil(t, err)
})
t.Run("Trying to change the distance measurement", func(t *testing.T) {
params := clschema.NewSchemaObjectsGetParams().
WithClassName(className)
res, err := helper.Client(t).Schema.SchemaObjectsGet(params, nil)
require.Nil(t, err)
class := res.Payload
class.VectorIndexConfig.(map[string]interface{})["distance"] = "l2-squared"
updateParams := clschema.NewSchemaObjectsUpdateParams().
WithClassName(className).
WithObjectClass(class)
_, err = helper.Client(t).Schema.SchemaObjectsUpdate(updateParams, nil)
assert.NotNil(t, err)
})
}
// TODO: https://github.com/weaviate/weaviate/issues/973
// // This test prevents a regression on the fix for this bug:
// // https://github.com/weaviate/weaviate/issues/831
// func TestDeleteSingleProperties(t *testing.T) {
// t.Parallel()
// randomObjectClassName := "RedShip"
// // Ensure that this name is not in the schema yet.
// t.Log("Asserting that this class does not exist yet")
// assert.NotContains(t, GetThingClassNames(t), randomThingClassName)
// tc := &models.Class{
// Class: randomThingClassName,
// Properties: []*models.Property{
// &models.Property{
// DataType: schema.DataTypeText.PropString(),
// Tokenization: models.PropertyTokenizationWhitespace,
// Name: "name",
// },
// &models.Property{
// DataType: schema.DataTypeText.PropString(),
// Tokenization: models.PropertyTokenizationWhitespace,
// Name: "description",
// },
// },
// }
// t.Log("Creating class")
// params := clschema.NewSchemaThingsCreateParams().WithThingClass(tc)
// resp, err := helper.Client(t).Schema.SchemaThingsCreate(params, nil)
// helper.AssertRequestOk(t, resp, err, nil)
// t.Log("Asserting that this class is now created")
// assert.Contains(t, GetThingClassNames(t), randomThingClassName)
// t.Log("adding an instance of this particular class that uses both properties")
// instanceParams := things.NewThingsCreateParams().WithBody(
// &models.Thing{
// Class: randomThingClassName,
// Schema: map[string]interface{}{
// "name": "my name",
// "description": "my description",
// },
// })
// instanceRes, err := helper.Client(t).Things.ThingsCreate(instanceParams, nil)
// assert.Nil(t, err, "adding a class instance should not error")
// t.Log("delete a single property of the class")
// deleteParams := clschema.NewSchemaThingsPropertiesDeleteParams().
// WithClassName(randomThingClassName).
// WithPropertyName("description")
// _, err = helper.Client(t).Schema.SchemaThingsPropertiesDelete(deleteParams, nil)
// assert.Nil(t, err, "deleting the property should not error")
// t.Log("retrieve the class and make sure the property is gone")
// thing := assertGetThingEventually(t, instanceRes.Payload.ID)
// expectedSchema := map[string]interface{}{
// "name": "my name",
// }
// assert.Equal(t, expectedSchema, thing.Schema)
// t.Log("verifying that we can still retrieve the thing through graphQL")
// result := gql.AssertGraphQL(t, helper.RootAuth, "{ Get { Things { RedShip { name } } } }")
// ships := result.Get("Get", "Things", "RedShip").AsSlice()
// expectedShip := map[string]interface{}{
// "name": "my name",
// }
// assert.Contains(t, ships, expectedShip)
// t.Log("verifying other GQL/REST queries still work")
// gql.AssertGraphQL(t, helper.RootAuth, "{ Meta { Things { RedShip { name { count } } } } }")
// gql.AssertGraphQL(t, helper.RootAuth, `{ Aggregate { Things { RedShip(groupBy: ["name"]) { name { count } } } } }`)
// _, err = helper.Client(t).Things.ThingsList(things.NewThingsListParams(), nil)
// assert.Nil(t, err, "listing things should not error")
// t.Log("verifying we could re-add the property with the same name")
// readdParams := clschema.NewSchemaThingsPropertiesAddParams().
// WithClassName(randomThingClassName).
// WithBody(&models.Property{
// Name: "description",
// DataType: schema.DataTypeText.PropString(),
// Tokenization: models.PropertyTokenizationWhitespace,
// })
// _, err = helper.Client(t).Schema.SchemaThingsPropertiesAdd(readdParams, nil)
// assert.Nil(t, err, "adding the previously deleted property again should not error")
// // Now clean up this class.
// t.Log("Remove the class")
// delParams := clschema.NewSchemaThingsDeleteParams().WithClassName(randomThingClassName)
// delResp, err := helper.Client(t).Schema.SchemaThingsDelete(delParams, nil)
// helper.AssertRequestOk(t, delResp, err, nil)
// // And verify that the class does not exist anymore.
// assert.NotContains(t, GetThingClassNames(t), randomThingClassName)
// }
|