Skip to main content
summaryrefslogtreecommitdiffstats
blob: d1da435ab407cbb3fcd3a118b473620b3e80b069 (plain) (blame)
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
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
/*******************************************************************************
 * Copyright (c) 2009 SAP AG.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eduard Bartsch (SAP AG) - initial API and implementation
 *    Mathias Kinzler (SAP AG) - initial API and implementation
 *******************************************************************************/
package org.eclipse.core.resources.semantic.test;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Map;

import junit.framework.Assert;

import org.eclipse.core.filesystem.EFS;
import org.eclipse.core.filesystem.IFileInfo;
import org.eclipse.core.filesystem.provider.FileInfo;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IMarker;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IProjectDescription;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.resources.IWorkspace;
import org.eclipse.core.resources.IWorkspaceRunnable;
import org.eclipse.core.resources.ResourcesPlugin;
import org.eclipse.core.resources.semantic.ISemanticFile;
import org.eclipse.core.resources.semantic.ISemanticFileSystem;
import org.eclipse.core.resources.semantic.ISemanticFolder;
import org.eclipse.core.resources.semantic.ISemanticProject;
import org.eclipse.core.resources.semantic.ISemanticResource;
import org.eclipse.core.resources.semantic.ISemanticResourceInfo;
import org.eclipse.core.resources.semantic.SyncDirection;
import org.eclipse.core.resources.semantic.examples.remote.RemoteFile;
import org.eclipse.core.resources.semantic.examples.remote.RemoteFolder;
import org.eclipse.core.resources.semantic.examples.remote.RemoteStore;
import org.eclipse.core.resources.semantic.examples.remote.RemoteStoreTransient;
import org.eclipse.core.resources.semantic.spi.ISemanticFileStore;
import org.eclipse.core.resources.semantic.spi.Util;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.OperationCanceledException;
import org.eclipse.core.runtime.QualifiedName;
import org.eclipse.core.runtime.Status;
import org.eclipse.core.runtime.jobs.ISchedulingRule;
import org.eclipse.team.core.RepositoryProvider;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;

/**
 * Base class for content provider tests
 * <p>
 * Creates a test project an initializes the remote repository
 * 
 */
public abstract class TestsContentProviderBase extends TestsContentProviderUtil {
	IWorkspace workspace = ResourcesPlugin.getWorkspace();

	/**
	 * The constructor
	 * 
	 * @param autoRefresh
	 *            if auto-refresh should be used
	 * @param projectName
	 *            the test project name
	 * @param providerName
	 *            the id of the content provider
	 */
	public TestsContentProviderBase(boolean autoRefresh, String projectName, String providerName) {
		super(autoRefresh, projectName, providerName);
	}

	@BeforeClass
	public static void beforeClass() throws Exception {
		TestsContentProviderUtil.beforeClass();
	}

	public static void afterClass() throws Exception {
		TestsContentProviderUtil.afterClass();
	}

	public abstract RemoteFile getRemoteFile();

	@Override
	@Before
	public void beforeMethod() throws Exception {

		final IProject project = workspace.getRoot().getProject(this.projectName);

		if (project.exists()) {
			throw new IllegalStateException("Project exists");
		}

		IWorkspaceRunnable myRunnable = new IWorkspaceRunnable() {
			public void run(IProgressMonitor monitor) throws CoreException {
				IProjectDescription description = workspace.newProjectDescription(TestsContentProviderBase.this.projectName);

				try {
					description.setLocationURI(new URI(ISemanticFileSystem.SCHEME + ":/" + TestsContentProviderBase.this.projectName));
				} catch (URISyntaxException e) {
					// really not likely, though
					throw new RuntimeException(e);
				}
				project.create(description, monitor);
				project.open(monitor);

				// for SFS, we map this to the team provider
				RepositoryProvider.map(project, ISemanticFileSystem.SFS_REPOSITORY_PROVIDER);

				ISemanticProject spr = (ISemanticProject) project.getAdapter(ISemanticProject.class);

				RemoteStoreTransient store = (RemoteStoreTransient) project.getAdapter(RemoteStoreTransient.class);
				store.reset();
				RemoteFolder f1 = store.getRootFolder().addFolder("Folder1");
				f1.addFolder("Folder11");

				try {
					f1.addFile("File1", "Hello".getBytes("UTF-8"), store.newTime());
				} catch (UnsupportedEncodingException e) {
					throw new RuntimeException(e);
				}

				Map<QualifiedName, String> properties = new HashMap<QualifiedName, String>();
				properties.put(TEMPLATE_PROP, "World");

				spr.addFolder("root", TestsContentProviderBase.this.providerName, properties, TestsContentProviderBase.this.options,
						monitor);

				project.refreshLocal(IResource.DEPTH_INFINITE, monitor);

			}

		};

		workspace.run(myRunnable, workspace.getRoot(), IWorkspace.AVOID_UPDATE, null);

		this.testProject = project;

		String projectName1 = this.testProject.getName();
		String[] roots = ((ISemanticFileSystem) EFS.getFileSystem(ISemanticFileSystem.SCHEME)).getRootNames();
		for (String root : roots) {
			if (root.equals(projectName1)) {
				return;
			}
		}
		Assert.fail("Project should be in the list of root names");

	}

	@Override
	@After
	public void afterMethod() throws Exception {

		RemoteStoreTransient store = (RemoteStoreTransient) this.testProject.getAdapter(RemoteStoreTransient.class);
		store.reset();

		final IProject project = workspace.getRoot().getProject(this.projectName);

		this.testProject = null;

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				project.delete(true, monitor);

				project.refreshLocal(IResource.DEPTH_INFINITE, monitor);

			}
		};

		workspace.run(runnable, new NullProgressMonitor());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testTemplateProperties() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		ISemanticFileStore store = (ISemanticFileStore) EFS.getStore(root.getLocationURI());
		Assert.assertTrue(store.getPersistentProperties().containsKey(TEMPLATE_PROP));

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testAddFileFromRemoteAndDeleteFolder() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		Assert.assertEquals("Folder existence", false, parent.exists());

		final IFile file = parent.getFile("File1");
		Assert.assertEquals("File existence", false, file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				ISemanticFile sfile = sfr.addFile("File1", TestsContentProviderBase.this.options, monitor);
				Assert.assertTrue(sfile.getAdaptedFile().equals(file));
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}

				Assert.assertEquals("File existence", true, file.exists());
				InputStream is = null;
				try {
					is = sfile.getAdaptedFile().getContents();
					try {
						Assert.assertTrue("Too few bytes available", is.available() > 0);
					} catch (IOException e) {
						// $JL-EXC$
						Assert.fail(e.getMessage());
					}
				} finally {
					Util.safeClose(is);
				}
			}
		};

		// we need to use the project since the root folder is not yet synched
		workspace.run(runnable, this.testProject, 0, new NullProgressMonitor());

		Assert.assertEquals("File existence", true, file.exists());
		Assert.assertEquals("Folder existence", true, parent.exists());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				try {
					sfr.addResource("File1", TestsContentProviderBase.this.options, monitor);
					// TODO restore after content providers have implemented
					// validateLocalDelete
					// Assert.fail("Exception should have been thrown for adding the same resource");
				} catch (Exception e) {
					// $JL-EXC$ expected
				}

				try {
					sfr.addResource("notexisting", TestsContentProviderBase.this.options, monitor);
					Assert.fail("Exception should have been thrown for adding nonexisting resource");
				} catch (CoreException e) {
					// $JL-EXC$ expected
					// TODO fix test
					// String test = e.getStatus().toString();
					// Assert.assertTrue("Status as String should contain path",
					// test.contains(sfr.getAdaptedContainer()
					// .getProjectRelativePath().toString()));
				}

				// TODO restore after content provider implement
				// validateLocalDelete
				// try {
				// file.delete(false, monitor);
				// Assert.fail("Exception should have been thrown for local delete of semantic resource");
				// } catch (OperationCanceledException e) {
				// // $JL-EXC$ expected
				// // reset canceled:
				// monitor.setCanceled(false);
				// }

				try {
					IFolder test = TestsContentProviderBase.this.testProject.getFolder("FileTarget");
					file.move(test.getFullPath(), false, monitor);
					Assert.fail("Exception should have been thrown for local move of semantic file");
				} catch (OperationCanceledException e) {
					// $JL-EXC$ expected
					// reset canceled
					monitor.setCanceled(false);
				}
				// // TODO problems due to copying in
				// RESTContentProvider.openInputStreamInternal with folders
				// try {
				// IFolder test =
				// TestsContentProviderBase.this.testProject.getFolder("FolderTarget");
				// parent.move(test.getFullPath(), false, monitor);
				// Assert.fail("Exception should have been thrown for local move of semantic folder");
				// } catch (OperationCanceledException e) {
				// // $JL-EXC$ expected
				// // reset canceled
				// monitor.setCanceled(false);
				// }

			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertTrue("File should exist", file.exists());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				sf.remove(TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", true, file.exists());
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", false, file.exists());
			}
		};

		workspace.run(runnable, workspace.getRuleFactory().refreshRule(parent), 0, new NullProgressMonitor());

		Assert.assertFalse("File should not exist", file.exists());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testAddFileAndImplicitFolderLocalFlag() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		Assert.assertEquals("Folder existence", false, parent.exists());

		final IFile file = parent.getFile("File1");
		Assert.assertEquals("File existence", false, file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				ISemanticFile sfile = sfr.addFile("File1", TestsContentProviderBase.this.options, monitor);
				Assert.assertTrue(sfile.getAdaptedFile().equals(file));
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}

			}
		};

		workspace.run(runnable, workspace.getRuleFactory().refreshRule(parent), 0, new NullProgressMonitor());

		Assert.assertEquals("File existence", true, file.exists());
		Assert.assertEquals("Folder existence", true, parent.exists());

		ISemanticFolder sFolder = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
		ISemanticResourceInfo info = sFolder.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCAL_ONLY, null);
		Assert.assertTrue("Folder should be local", info.isLocalOnly());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testAddFileAndHandleProperties() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		Assert.assertEquals("Folder existence", false, parent.exists());

		final IFile file = parent.getFile("File1");
		Assert.assertEquals("File existence", false, file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				ISemanticFile sfile = sfr.addFile("File1", TestsContentProviderBase.this.options, monitor);
				Assert.assertTrue(sfile.getAdaptedFile().equals(file));
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);

				}
				Assert.assertEquals("File existence", true, file.exists());
				InputStream is = null;
				try {
					is = sfile.getAdaptedFile().getContents();
					try {
						Assert.assertTrue("Too few bytes available", is.available() > 0);
					} catch (IOException e) {
						// $JL-EXC$
						Assert.fail(e.getMessage());
					}
				} finally {
					Util.safeClose(is);
				}
			}
		};

		// we need to use the project since the root folder is not yet synched
		workspace.run(runnable, this.testProject, 0, new NullProgressMonitor());

		Assert.assertEquals("File existence", true, file.exists());
		Assert.assertEquals("Folder existence", true, parent.exists());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sfile = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sfile.setPersistentProperty(DUMMY_PROP, "Some Value");
				Assert.assertNotNull("Property should not be null", sfile.getPersistentProperty(DUMMY_PROP));
				Assert.assertTrue("Map should contain the property", sfile.getPersistentProperties().containsKey(DUMMY_PROP));
				Assert.assertFalse("Map should not contain the property", sfile.getPersistentProperties().containsKey(DUMMY_PROP2));
				sfile.setPersistentProperty(DUMMY_PROP2, "Some other Value");
				Assert.assertTrue("Map should contain the property", sfile.getPersistentProperties().containsKey(DUMMY_PROP2));
				sfile.setPersistentProperty(DUMMY_PROP2, null);
				Assert.assertFalse("Map should not contain the property", sfile.getPersistentProperties().containsKey(DUMMY_PROP2));
				sfile.setPersistentProperty(DUMMY_PROP, null);
				Assert.assertFalse("Map should not contain the property", sfile.getPersistentProperties().containsKey(DUMMY_PROP));
				sfile.setPersistentProperty(DUMMY_PROP, null);
				Assert.assertNull("Property should be null", sfile.getPersistentProperty(DUMMY_PROP));
			}
		};

		workspace.run(runnable, workspace.getRuleFactory().modifyRule(file), 0, new NullProgressMonitor());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sfile = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sfile.setSessionProperty(DUMMY_PROP, "Some Value");
				Assert.assertNotNull("Property should not be null", sfile.getSessionProperty(DUMMY_PROP));
				Assert.assertTrue("Map should contain the property", sfile.getSessionProperties().containsKey(DUMMY_PROP));
				Assert.assertFalse("Map should not contain the property", sfile.getSessionProperties().containsKey(DUMMY_PROP2));
				sfile.setSessionProperty(DUMMY_PROP2, "Some other Value");
				Assert.assertTrue("Map should contain the property", sfile.getSessionProperties().containsKey(DUMMY_PROP2));
				sfile.setSessionProperty(DUMMY_PROP2, null);
				Assert.assertFalse("Map should not contain the property", sfile.getSessionProperties().containsKey(DUMMY_PROP2));
				sfile.setSessionProperty(DUMMY_PROP, null);
				Assert.assertFalse("Map should not contain the property", sfile.getSessionProperties().containsKey(DUMMY_PROP));
				sfile.setSessionProperty(DUMMY_PROP, null);
				Assert.assertNull("Property should be null", sfile.getSessionProperty(DUMMY_PROP));
			}
		};

		workspace.run(runnable, workspace.getRuleFactory().modifyRule(file), 0, new NullProgressMonitor());

		// TODO project close/open should drop session props
		// runnable = new IWorkspaceRunnable() {
		//
		// @Override
		// public void run(IProgressMonitor monitor) throws CoreException {
		// ISemanticFile sfile = (ISemanticFile)
		// file.getAdapter(ISemanticFile.class);
		// sfile.setSessionProperty(DUMMY_PROP, "Some Value");
		// Assert.assertNotNull("Property should not be null",
		// sfile.getSessionProperty(DUMMY_PROP));
		//
		// TestsContentProviderBase.this.testProject.close(monitor);
		//
		// TestsContentProviderBase.this.testProject.open(monitor);
		//
		// Assert.assertNull("Property should be null",
		// sfile.getSessionProperty(DUMMY_PROP));
		//
		// }
		// };
		//
		// workspace.run(runnable, new
		// NullProgressMonitor());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.remove(TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", true, file.exists());
					file.refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", false, file.exists());
			}
		};

		workspace.run(runnable, workspace.getRuleFactory().deleteRule(file), 0, new NullProgressMonitor());

		Assert.assertFalse("File should not exist", file.exists());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testTimestamp() throws Exception {

		final IFolder root = this.testProject.getFolder("root");

		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		Assert.assertFalse(file.exists());

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				sf.addFile("File1", TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", true, file.exists());
			}
		};

		workspace.run(runnable, workspace.getRuleFactory().refreshRule(parent), 0, new NullProgressMonitor());

		Assert.assertEquals("File existence", true, file.exists());

		ISemanticFileStore store = (ISemanticFileStore) EFS.getStore(file.getLocationURI());
		long stamp = store.fetchInfo().getLastModified();

		Assert.assertEquals("Wrong date", getRemoteFile().getTimestamp(), stamp);

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				sf.getResource("File1").remove(TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", true, file.exists());
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", false, file.exists());

			}
		};

		workspace.run(runnable, new NullProgressMonitor());
	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testSetTimestamp() throws Exception {

		final IFolder root = this.testProject.getFolder("root");

		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		Assert.assertFalse(file.exists());

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile rfile = sf.addFile("File1", TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", true, file.exists());

				long localTime = rfile.getAdaptedFile().getLocalTimeStamp();
				RemoteStoreTransient rstore = (RemoteStoreTransient) TestsContentProviderBase.this.testProject
						.getAdapter(RemoteStoreTransient.class);
				long newTime = rstore.newTime();

				rfile.getAdaptedFile().setLocalTimeStamp(newTime);
				if (!TestsContentProviderBase.this.autoRefresh) {
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}

				ISemanticFileStore store = (ISemanticFileStore) EFS.getStore(file.getLocationURI());
				long stamp = store.fetchInfo().getLastModified();

				Assert.assertFalse("Timestamps should differ", localTime == newTime);

				Assert.assertEquals("Timstamps should not differ", stamp, newTime);

			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				sf.getResource("File1").remove(TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", true, file.exists());
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", false, file.exists());

			}
		};

		workspace.run(runnable, new NullProgressMonitor());
	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testExistence() throws Exception {

		IFolder root = this.testProject.getFolder("root");

		IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		Assert.assertFalse(file.exists());

		final IFile nofile = parent.getFile("NoFile");
		Assert.assertFalse(file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				Assert.assertTrue("Should exist remotely", sf.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_EXISTS_REMOTELY, monitor)
						.existsRemotely());

				sf = (ISemanticFile) nofile.getAdapter(ISemanticFile.class);
				Assert.assertFalse("Should not exist remotely", sf.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_EXISTS_REMOTELY,
						monitor).existsRemotely());
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testLockAndUnlock() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {

				ISemanticFile sfile = sf.addFile("File1", TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", true, file.exists());

				ISemanticResourceInfo info = sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKING_SUPPORTED, monitor);
				if (!info.isLockingSupported()) {
					return;
				}

				Assert.assertFalse("Should not be locked", sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, monitor)
						.isLocked());
				sfile.lockResource(TestsContentProviderBase.this.options, monitor);
				Assert.assertTrue("Should be locked", sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, monitor).isLocked());
				sfile.unlockResource(TestsContentProviderBase.this.options, monitor);
				Assert.assertFalse("Should not be locked", sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, monitor)
						.isLocked());
			}
		};

		ISchedulingRule rule = workspace.getRuleFactory().refreshRule(parent);
		workspace.run(runnable, rule, IWorkspace.AVOID_UPDATE, new NullProgressMonitor());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testAddResourceFromRemoteAndAddMarker() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		// Assert.assertTrue("Folder should exist", parent.exists());
		Assert.assertFalse("File should not exist", file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfolder = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				ISemanticResource filres = sfolder.addResource("File1", TestsContentProviderBase.this.options, monitor);
				Assert.assertTrue(filres instanceof ISemanticFile);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, file.exists());
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", true, file.exists());
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("File existence", true, file.exists());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				IMarker marker = file.createMarker(IMarker.PROBLEM);
				marker.setAttribute(IMarker.MESSAGE, "Some message");
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.remove(TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", true, file.exists());
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", false, file.exists());
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("File existence", false, file.exists());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testAddFolderFromRemote() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final IFolder folder = parent.getFolder("Folder11");
		// Assert.assertTrue("Folder should exist", parent.exists());
		Assert.assertEquals("Folder existence", false, folder.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfolder = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				sfolder.addFolder("Folder11", TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", false, folder.exists());
					folder.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", true, folder.exists());
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("Folder existence", true, folder.exists());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sf = (ISemanticFolder) folder.getAdapter(ISemanticFolder.class);
				sf.remove(TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					Assert.assertEquals("File existence", true, folder.exists());
					folder.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", false, folder.exists());
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("Folder existence", false, folder.exists());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testChangeFileContentLocalAndRevert() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		Assert.assertFalse("File should not exist", file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				sfr.addFile("File1", TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
				Assert.assertEquals("File existence", true, file.exists());
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		assertContentsEqual(file, "Hello");

		long oldStamp = file.getModificationStamp();

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				try {
					ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
					IStatus stat = sf.validateEdit(null);

					Assert.assertTrue("ValidateEdit should have returned OK", stat.isOK());

					file.setContents(new ByteArrayInputStream("NewString".getBytes("UTF-8")), IResource.KEEP_HISTORY, monitor);

				} catch (UnsupportedEncodingException e) {
					// $JL-EXC$
					Assert.fail(e.getMessage());
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		assertContentsEqual(file, "NewString");

		long newStamp = file.getModificationStamp();

		Assert.assertFalse("Timestamp should differ", oldStamp == newStamp);

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				try {
					ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
					IStatus stat = sf.validateEdit(null);

					Assert.assertTrue("ValidateEdit should have returned OK", stat.isOK());

					file.appendContents(new ByteArrayInputStream("Appended".getBytes("UTF-8")), IResource.KEEP_HISTORY, monitor);

					if (!TestsContentProviderBase.this.autoRefresh) {
						file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
					}

				} catch (UnsupportedEncodingException e) {
					// $JL-EXC$
					Assert.fail(e.getMessage());
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		assertContentsEqual(file, "NewStringAppended");

		workspace.run(runnable, new NullProgressMonitor());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.revertChanges(TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		assertContentsEqual(file, "Hello");

		long revertedStamp = file.getModificationStamp();

		Assert.assertFalse("Timestamp should have been reverted", oldStamp == revertedStamp);

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.remove(TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("File existence", false, file.exists());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testChangeFileContentRemote() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		Assert.assertFalse("File should not exist", file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				sfr.addFile("File1", TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertTrue("File should exist", file.exists());

		assertContentsEqual(file, "Hello");

		Assert.assertEquals("Wrong remote content", "Hello", new String(getRemoteFile().getContent(), "UTF-8"));

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				IStatus stat = sf.validateEdit(null);

				Assert.assertTrue("ValidateEdit should have returned OK", stat.isOK());

				try {
					file.setContents(new ByteArrayInputStream("NewString".getBytes("UTF-8")), IResource.KEEP_HISTORY,
							new NullProgressMonitor());
					sf.synchronizeContentWithRemote(SyncDirection.OUTGOING, TestsContentProviderBase.this.options, monitor);
					if (getRemoteFile().getStore() instanceof RemoteStore) {
						((RemoteStore) getRemoteFile().getStore()).serialize(monitor);
					}

					if (!TestsContentProviderBase.this.autoRefresh) {
						file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
					}

				} catch (UnsupportedEncodingException e) {
					// $JL-EXC$
					throw new RuntimeException(e.getMessage());
				}

			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		assertContentsEqual(file, "NewString");

		Assert.assertEquals("Wrong remote content", "NewString", new String(getRemoteFile().getContent(), "UTF-8"));

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.synchronizeContentWithRemote(SyncDirection.OUTGOING, TestsContentProviderBase.this.options, monitor);
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.remove(TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertFalse("File should not exist", file.exists());

	}

	/**
	 * TODO should this call synchronizeStateWithRemoate?
	 * 
	 * @throws Exception
	 */
	@Test
	public void testChangeFileStateRemote() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final IFile file = parent.getFile("File1");
		Assert.assertFalse("File should not exist", file.exists());

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFolder sfr = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
				sfr.addFile("File1", TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertTrue("File should exist", file.exists());

		ISemanticFile sfile = (ISemanticFile) file.getAdapter(ISemanticFile.class);

		if (!sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKING_SUPPORTED, null).isLockingSupported()) {
			return;
		}

		Assert.assertEquals("Wrong lock state", false, sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, null).isLocked());

		getRemoteFile().setLocked(true);

		Assert.assertEquals("Wrong lock state", false, sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, null).isLocked());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);

				sf.synchronizeContentWithRemote(SyncDirection.INCOMING, ISemanticFileSystem.NONE, monitor);

			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("Wrong lock state", true, sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, null).isLocked());

		getRemoteFile().setLocked(false);

		Assert.assertEquals("Wrong lock state", true, sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, null).isLocked());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);

				sf.synchronizeContentWithRemote(SyncDirection.INCOMING, ISemanticFileSystem.NONE, monitor);

			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertEquals("Wrong lock state", false, sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_LOCKED, null).isLocked());

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sf = (ISemanticFile) file.getAdapter(ISemanticFile.class);
				sf.remove(TestsContentProviderBase.this.options, null);
				if (!TestsContentProviderBase.this.autoRefresh) {
					file.getParent().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertFalse("File should not exist", file.exists());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testCreateAndDeleteRemote() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				try {
					sf.createFileRemotely("NewFromClient", new ByteArrayInputStream("RemoteContent".getBytes("UTF-8")), null,
							TestsContentProviderBase.this.options, monitor);
					sf.createResourceRemotely("NewFromClient2", null, TestsContentProviderBase.this.options, monitor);
					if (!TestsContentProviderBase.this.autoRefresh) {
						sf.getAdaptedContainer().refreshLocal(0, monitor);
					}

				} catch (UnsupportedEncodingException e) {
					// $JL-EXC$
					throw new CoreException(new Status(IStatus.ERROR, TestPlugin.PLUGIN_ID, e.getMessage(), e));
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertTrue("Child should be available", sf.hasResource("NewFromClient"));

		final ISemanticResource res = sf.getResource("NewFromClient");
		final ISemanticResource res2 = sf.getResource("NewFromClient2");

		runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				res.deleteRemotely(TestsContentProviderBase.this.options, monitor);
				res2.deleteRemotely(TestsContentProviderBase.this.options, monitor);
				if (!TestsContentProviderBase.this.autoRefresh) {
					sf.getAdaptedContainer().refreshLocal(IResource.DEPTH_INFINITE, monitor);
				}
			}
		};

		workspace.run(runnable, new NullProgressMonitor());

		Assert.assertFalse("Child should not be available", sf.hasResource("NewFromClient"));

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testSetReadOnly() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		final IFile file = parent.getFile("File1");
		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);

		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sfile = sf.addFile("File1", TestsContentProviderBase.this.options, monitor);

				Assert.assertTrue("File should be read-only", sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_READ_ONLY, null)
						.isReadOnly());

				ISemanticFileStore store = (ISemanticFileStore) EFS.getStore(file.getLocationURI());
				IFileInfo info = new FileInfo();
				info.setAttribute(EFS.ATTRIBUTE_READ_ONLY, false);
				store.putInfo(info, EFS.SET_ATTRIBUTES, null);

				Assert.assertFalse("File should not be read-only", sfile.fetchResourceInfo(ISemanticFileSystem.RESOURCE_INFO_READ_ONLY,
						null).isReadOnly());

			}
		};
		workspace.run(runnable, new NullProgressMonitor());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testValidateEdit() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		IFile file = parent.getFile("File1");

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
		final IStatus[] result = new IStatus[1];
		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sfile = sf.addFile("File1", TestsContentProviderBase.this.options, monitor);
				result[0] = sfile.validateEdit(monitor);
				sfile.remove(TestsContentProviderBase.this.options, monitor);
			}
		};

		workspace.run(runnable, new NullProgressMonitor());
		IStatus stat = result[0];
		Assert.assertTrue("ValidateEdit should be ok", stat.getSeverity() == IStatus.OK);

		file = parent.getFile("File2");
		ISemanticFile sfile = (ISemanticFile) file.getAdapter(ISemanticFile.class);
		stat = sfile.validateRemoteDelete(null);
		Assert.assertFalse("ValidateEdit should not be ok", stat.getSeverity() == IStatus.OK);

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testValidateRemoteDelete() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		IFile file = parent.getFile("File1");

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
		final IStatus[] result = new IStatus[1];
		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sfile = sf.addFile("File1", TestsContentProviderBase.this.options, monitor);
				result[0] = sfile.validateRemoteDelete(monitor);
				sfile.remove(TestsContentProviderBase.this.options, monitor);
			}
		};

		workspace.run(runnable, new NullProgressMonitor());
		IStatus stat = result[0];
		Assert.assertTrue("ValidateRemoteDelete should be ok", stat.getSeverity() == IStatus.OK);

		file = parent.getFile("File2");

		ISemanticFile sfile = (ISemanticFile) file.getAdapter(ISemanticFile.class);
		stat = sfile.validateRemoteDelete(null);
		Assert.assertFalse("ValidateRemoteDelete should not be ok", stat.getSeverity() == IStatus.OK);

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testValidateSave() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");
		IFile file = parent.getFile("File1");

		final ISemanticFolder sf = (ISemanticFolder) parent.getAdapter(ISemanticFolder.class);
		final IStatus[] result = new IStatus[1];
		IWorkspaceRunnable runnable = new IWorkspaceRunnable() {

			public void run(IProgressMonitor monitor) throws CoreException {
				ISemanticFile sfile = sf.addFile("File1", TestsContentProviderBase.this.options, monitor);
				sfile.validateEdit(null);
				result[0] = sfile.validateSave();
				sfile.remove(TestsContentProviderBase.this.options, monitor);
			}
		};

		workspace.run(runnable, new NullProgressMonitor());
		IStatus stat = result[0];
		Assert.assertTrue("ValidateSave should be ok", stat.getSeverity() == IStatus.OK);

		file = parent.getFile("File2");

		ISemanticFile sfile = (ISemanticFile) file.getAdapter(ISemanticFile.class);
		stat = sfile.validateSave();
		Assert.assertFalse("ValidateSave should not be ok", stat.getSeverity() == IStatus.OK);

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testSemanticFileStoreToUri() throws Exception {

		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		URI uri = EFS.getStore(parent.getLocationURI()).toURI();

		Assert.assertEquals("URIs should be equal", uri, parent.getLocationURI());

	}

	/**
	 * 
	 * @throws Exception
	 */
	@Test
	public void testConcurrentStoreCreation() throws Exception {
		final IFolder root = this.testProject.getFolder("root");
		final IFolder parent = root.getFolder("Folder1");

		ISemanticFileStore parentStore1 = (ISemanticFileStore) EFS.getStore(parent.getLocationURI());
		ISemanticFileStore parentStore2 = (ISemanticFileStore) EFS.getStore(parent.getLocationURI());

		Assert.assertFalse(parentStore1.isExists());
		Assert.assertFalse(parentStore2.isExists());

		parentStore1.mkdir(0, null);

		Assert.assertTrue(parentStore1.isExists());
		Assert.assertTrue(parentStore2.isExists());

		IFile file = parent.getFile("File1");

		ISemanticFileStore fileStore1 = (ISemanticFileStore) EFS.getStore(file.getLocationURI());
		ISemanticFileStore fileStore2 = (ISemanticFileStore) EFS.getStore(file.getLocationURI());

		Assert.assertFalse(fileStore1.isExists());
		Assert.assertFalse(fileStore2.isExists());

		Util.safeClose(fileStore1.openOutputStream(0, null));

		Assert.assertTrue(fileStore1.isExists());
		Assert.assertTrue(fileStore2.isExists());

	}

}

Back to the top